Skip to content

Commit

Permalink
updated phpsploit default config tree
Browse files Browse the repository at this point in the history
  • Loading branch information
nil0x42 committed May 22, 2014
1 parent d5cd062 commit 67cb06e
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 4 deletions.
9 changes: 6 additions & 3 deletions data/config/README
Original file line number Diff line number Diff line change
Expand Up @@ -9,10 +9,10 @@ The ./config file is automatically sourced at framework initialisation,
and is the correct way to configure special behaviors at start, such
as defining custom values for settings.
The ./config file is interpreted line by line, as if each line had been
typed in the framework interface. For example, adding a line like this:
typed in the framework interface. For example, is you want to overwrite
the PASSKEY setting's default value, just add the following line to the
configuration file:
> set PASSKEY "myPassKey"
is the correct way to overwrite the PASSKEY setting's default value.



./plugins directory
Expand All @@ -22,12 +22,14 @@ This directory must be used for user specific plugins.
It works exactly the same way as phpsploit's plugins directory.

* Structure convention:

First level directories are considered as category names, while their
childs (second level directories) are the plugin names.

Each plugin contains at least a 'plugin.py' file.

---------------------------

plugins/
+-- file_system/
+-- shred/
Expand All @@ -44,6 +46,7 @@ plugins/
+-- netscan
| +-- plugin.py
| +-- payload.php

---------------------------

In the plugins tree below, two personnal plugins have been added in the
Expand Down
5 changes: 4 additions & 1 deletion data/config/config
Original file line number Diff line number Diff line change
Expand Up @@ -15,10 +15,13 @@ alias save "session save"
alias infect "exploit"


### Some examples of aliases you may want to add:
### Some configuration examples you may want to add:

## set your own PASSKEY to prevent other phpsploit users use your backdoors.
# set PASSKEY "YourPassKey"

## use vim as text editor because all other editors sucks !
# set TEXTEDITOR "vim"

## bypass vimist habits by aliasing 'edit' to 'vim'.
# alias vim "edit"

0 comments on commit 67cb06e

Please sign in to comment.