Cleaned up backup files ~, removed the windows.md since there is a dir and index.md file now, cleaned up the powershell.md

This commit is contained in:
webbreacher
2014-02-06 20:24:44 -05:00
parent ab073a6bb6
commit 656a772d4e
4 changed files with 0 additions and 189 deletions

View File

@@ -1,21 +0,0 @@
<!-- 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*
```