mirror of
https://github.com/oXis/pwnwiki.github.io.git
synced 2025-10-29 16:56:59 +00:00
86 lines
1.9 KiB
Markdown
86 lines
1.9 KiB
Markdown
# Pwn Wiki
|
|
|
|
[Home](index.md)
|
|
|
|
[Presence]()
|
|
|
|
* [Windows](presence/windows/index.md)
|
|
* [Linux](presence/linux/index.md)
|
|
* [OSX](presence/osx/index.md)
|
|
|
|
[Persistence]()
|
|
|
|
* [Windows](persistence/windows/index.md)
|
|
* [Linux](persistence/linux/index.md)
|
|
* [OSX](persistence/osx/index.md)
|
|
|
|
[Pivoting]()
|
|
|
|
* [Windows](pivoting/windows/index.md)
|
|
* [Linux](pivoting/linux/index.md)
|
|
* [OSX](pivoting/osx/index.md)
|
|
|
|
[Privilege Escalation]()
|
|
|
|
* [Windows](privesc/windows/index.md)
|
|
* [Linux](privesc/linux/index.md)
|
|
* [OSX](privesc/osx/index.md)
|
|
|
|
[Technologies]()
|
|
|
|
* [Mobile](tech/mobile/index.md)
|
|
* [Mainframes](tech/mainframes/index.md)
|
|
* [Embedded OSs](tech/embedded/index.md)
|
|
* [Web Languages](tech/web/languages.md)
|
|
* [Web Apps](tech/web/apps.md)
|
|
* [Web Servers](tech/web/servers.md)
|
|
* [Network Services](tech/services/index.md)
|
|
* [Databases](tech/db/index.md)
|
|
* [Novell](tech/novell.md)
|
|
|
|
[Binaries]()
|
|
|
|
* [Windows](bins/windows/index.md)
|
|
* [Linux](bins/linux/index.md)
|
|
* [OSX](bins/osx/index.md)
|
|
* [Universal](bins/multi/index.md)
|
|
|
|
[Scripting]()
|
|
|
|
* [Python](scripting/python.md)
|
|
* [Powershell](scripting/powershell.md)
|
|
* [Ruby](scripting/ruby.md)
|
|
* [Perl](scripting/perl.md)
|
|
* [Windows](scripting/windows.md)
|
|
* [NodeJS](scripting/NodeJS.md)
|
|
* [Linux bash](scripting/bash.md)
|
|
|
|
[Metasploit]()
|
|
|
|
* [Meterpreter](msf/meterpreter.md)
|
|
* [Auxiliary Modules](msf/aux.md)
|
|
* [Exploit Modules](msf/exploit.md)
|
|
* [Post Modules](msf/post.md)
|
|
* [Railgun](msf/railgun.md)
|
|
* [MSF Tools](msf/tools.md)
|
|
|
|
[References]()
|
|
|
|
* [How to Contribute](references/contribute.md)
|
|
* [Links](references/links.md)
|
|
* [Unix Rosetta Stone](references/rosetta.htm)
|
|
|
|
[gimmick:themechooser](Wiki Theme)
|
|
|
|
<!-- Code for collapse and expand -->
|
|
<script type="text/javascript">
|
|
$(document).ready(function() {
|
|
$('div.view').hide();
|
|
$('div.slide').click(function() {
|
|
$(this).next('div.view').slideToggle('fast');
|
|
return false;
|
|
});
|
|
});
|
|
</script>
|
|
|