Skip to content

Commit 4485fa4

Browse files
authored
fixes issue #84 and issue #86
1 parent 9c96a19 commit 4485fa4

3 files changed

Lines changed: 18 additions & 4 deletions

File tree

README.md

Lines changed: 15 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,14 @@ Receiving back connections on your local machine might not be the best idea from
99

1010
The new version of AutoSploit has a feature that allows you to set a proxy before you connect and a custom user-agent.
1111

12+
# Helpful links
13+
- [Usage](https://github.com/NullArray/AutoSploit#usage)
14+
- [Dependencies](https://github.com/NullArray/AutoSploit#dependencies)
15+
- [User Manual](https://github.com/NullArray/AutoSploit/wiki)
16+
- [Shoutouts](https://github.com/NullArray/AutoSploit#acknowledgements)
17+
- [Development](https://github.com/NullArray/AutoSploit#active-development)
18+
- [Discord server](https://discord.gg/9BeeZQk)
19+
1220
## Usage
1321

1422
Clone the repo. Or deploy via Docker. Details for which can be found [here](https://github.com/NullArray/AutoSploit/tree/master/Docker)
@@ -113,10 +121,15 @@ And thanks to [Khast3x](https://github.com/khast3x) for setting up Docker suppor
113121

114122

115123
### Active Development
116-
While this isn't exactly a Beta release it is an early release nonetheless as such the tool might be subject to changes in the future.
124+
125+
While this isn't exactly a Beta release, AutoSploit 2.0 is an early release nonetheless as such the tool might be subject to changes in the future.
117126

118127
I've been working on the new version of the tool in an open source capacity with the help of a number of developers
119-
that have expressed an interest in doing so. The new version will include extra features such as the ability to load in a custom target and exploit list among many more enhancements. If you would like to keep up to date on all the most recent developments be sure to check out the [Development Branch](https://github.com/NullArray/AutoSploit/tree/dev-beta)
128+
that have expressed an interest in doing so. If you would like to keep up to date on all the most recent developments be sure to check out the [Development Branch](https://github.com/NullArray/AutoSploit/tree/dev-beta).
129+
130+
If you would like to contribute to the development of this project please be sure to read [CONTRIBUTING.md](https://github.com/NullArray/AutoSploit/blob/master/CONTRIBUTING.md) as it contains our contribution guidelines.
131+
132+
If you need some help understanding the code, or want to chat with some other AutoSploit community members, feel free to join our [Discord chat](https://discord.gg/9BeeZQk).
120133

121134
### Note
122135

api_calls/zoomeye.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ def zoomeye(self):
6767
else:
6868
headers = {
6969
"Authorization": "JWT {}".format(str(token["access_token"])),
70-
"agent": self.user_agent["User-Agent"]
70+
"User-Agent": self.user_agent["User-Agent"] # oops
7171
}
7272
params = {"query": self.query, "page": "1", "facet": "ipv4"}
7373
req = requests.get(

autosploit/main.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,8 @@ def main():
2727
logo()
2828
info("welcome to autosploit, give us a little bit while we configure")
2929
info("checking for services")
30-
service_names = ("postgresql", "apache")
30+
# according to ps aux, postgre and apache2 are the names of the services
31+
service_names = ("postgres", "apache2")
3132
for service in list(service_names):
3233
if not check_services(service):
3334
choice = prompt("it appears that service {} is not enabled, would you like us to enable it for you[y/N]".format(service))

0 commit comments

Comments
 (0)