mirror of
https://github.com/oXis/pwnwiki.github.io.git
synced 2025-10-29 16:56:59 +00:00
22 lines
520 B
Markdown
22 lines
520 B
Markdown
<!-- 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*
|
|
```
|
|
|