You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+23-1Lines changed: 23 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -14,40 +14,62 @@ free exploit framework written use python language version 3.3
14
14
15
15
# Getting Started
16
16
the framework not need many steps to install and start using just follow the next steps
17
+
17
18
## Platform
19
+
18
20
the framework designed to run on Gnu/Linux distro only
19
21
> tell us if framework work in another platforms :)
22
+
20
23
## Prerequisites
21
24
the requirement is:
22
25
* bs4
23
26
* python-tools
24
27
* python3.x
25
28
### Installing Requirement
26
29
#### installing bs4
30
+
27
31
easily you can install the whole requirement from requirement.txt file by execute this command:
28
32
```
29
33
sudo python3-pip install -r requirements.txt
30
34
```
31
35
#### installing python-tools
36
+
32
37
in debian and her children the package names is python-examples and you can install it by the packages manager (apt) by ordered this command:
33
38
```
34
39
sudo apt-get install python-examples
35
40
```
36
41
but in opensuse is called python-demo and in fedora/redhat is called python-tools > in both of them you can also use the packages manager to install the package
42
+
37
43
#### installing python3
38
44
the most of linux distro has python preinstalled but if you have old version you can install it using your packages manager or from the official website https://www.python.org/downloads/
45
+
46
+
## Install on you computer
47
+
in 1.1 version we added installer to insatll the framework on your device so to start installing the tool go to tool directory and execute this command:
48
+
```
49
+
sudo python3 PySploit.py -i
50
+
```
51
+
if the install done the tool will tell you.
52
+
now if you need unistall the tool you can execute this another command:
53
+
```
54
+
sudo python3 PySploit -un
55
+
```
56
+
> Note: you should execute the both command with root privilege
57
+
39
58
# Add your module
40
59
we designed this framework to be easy to create your module all what you need is define three dictionarys and two functions :)
41
60
you can read simple_sample.py file in samples directory for more informations
42
-
> we work to add wiki page which explain how to create module from zero
61
+
> to more info visit this topic https://github.com/ahmadnourallah/pysploit-framework/wiki/Add-your-module
0 commit comments