mirror of
https://github.com/oXis/pwnwiki.github.io.git
synced 2025-10-29 16:56:59 +00:00
Full update
This commit is contained in:
21
persistence/linux/general.md
Normal file
21
persistence/linux/general.md
Normal file
@@ -0,0 +1,21 @@
|
||||
<!-- 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>
|
||||
|
||||
# Linux General Persistence Commands
|
||||
|
||||
Commands to run to maintain persistence after you have exploited it and are usually executed from the context of the bash prompt.
|
||||
|
||||
###Run command as a daemon
|
||||
*Note this doesn't work with anything from apache. Runs like & but doesn't care if the parent process closes*
|
||||
```bash
|
||||
setsid *command*
|
||||
```
|
||||
|
||||
21
persistence/linux/general.md~
Normal file
21
persistence/linux/general.md~
Normal file
@@ -0,0 +1,21 @@
|
||||
<!-- 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>
|
||||
|
||||
# Linux General Persistence Commands
|
||||
|
||||
Commands to run to maintain persistence after you have exploited it and are usually executed from the context of the bash prompt.
|
||||
|
||||
###Run command as a daemon
|
||||
*Note this doesn't work with anything from apache*
|
||||
```bash
|
||||
setsid *command*
|
||||
```
|
||||
|
||||
5
persistence/linux/index.md
Normal file
5
persistence/linux/index.md
Normal file
@@ -0,0 +1,5 @@
|
||||
# Linux Persistence Commands
|
||||
|
||||
Commands that help you maintain control over a compromised system.
|
||||
|
||||
* [General Commands](general.md) - Commands your could/should use to maintain your hold on the compromised system.
|
||||
Reference in New Issue
Block a user