Skip to content

Commit c3f6413

Browse files
committed
bugfix: banner option.
1 parent a155523 commit c3f6413

File tree

6 files changed

+26
-3
lines changed

6 files changed

+26
-3
lines changed

docs/LICENSE

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
The MIT License (MIT)
22

3-
Copyright (c) 2012-2020 noptrix
3+
Copyright (c) 2012-2021 noptrix
44

55
Permission is hereby granted, free of charge, to any person obtaining a copy
66
of this software and associated documentation files (the "Software"), to deal

docs/TODO

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,10 @@
99
[ ] sandbox detection
1010
[ ] no ssh saves to another files ( it's good for user as SOCKS 4 )
1111
[ ] anti dupe system ( no double )
12+
13+
14+
===> 1.5.0
15+
1216
[ ] randomize ipfile (sort as random ips.txt)
1317
[ ] random brute (take random ip from ips and random user:pass from user
1418
files ) and brute it

lists/combo.txt

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@ admin:admin
33
demo:demo
44
demos:demos
55
dev:dev
6+
developer:developer
67
ftp:ftp
78
fwadmin:fwadmin
89
guest01:guest01
@@ -23,6 +24,7 @@ operator:operator
2324
op:op
2425
oracle:oracle
2526
postgres:postgres
27+
power:power
2628
readonly:readonly
2729
root:root
2830
setup:setup

lists/pws.txt

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -167,6 +167,11 @@ pink123
167167
pink123!
168168
postgres
169169
postgres123
170+
power
171+
power1
172+
power1!
173+
power123
174+
power123!
170175
p@ssw0rd
171176
P@ssw0rd
172177
p@ssword
@@ -183,6 +188,12 @@ PW123!
183188
pw1234
184189
PW1234
185190
PW1234!
191+
pwd
192+
pwd1
193+
pwd1!
194+
Pwd1!
195+
pwd123
196+
pwd123!
186197
pwer1234!
187198
qwerty
188199
qwerty123
@@ -254,6 +265,10 @@ test123
254265
test123!
255266
test1234
256267
tester
268+
tester1
269+
tester1!
270+
tester123
271+
tester1234
257272
testtest
258273
TestTest
259274
tomcat

lists/user.txt

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@ admin
33
demo
44
demos
55
dev
6+
developer
67
ftp
78
fwadmin
89
guest
@@ -23,6 +24,7 @@ op
2324
operator
2425
oracle
2526
postgres
27+
power
2628
readonly
2729
root
2830
setup

sshprank.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@
3838

3939

4040
__author__ = 'noptrix'
41-
__version__ = '1.4.1'
41+
__version__ = '1.4.2'
4242
__copyright = 'santa clause'
4343
__license__ = 'MIT'
4444

@@ -672,7 +672,7 @@ def main(cmdline):
672672
if not opts['targetlist'] and opts['targets']:
673673
log('cracking single target', 'info')
674674
crack_single()
675-
elif len(opts['targetlist']) > 0:
675+
elif len(opts['targetlist']) > 0 and '-b' not in cmdline:
676676
with ThreadPoolExecutor(1) as e:
677677
future = e.submit(crack_multi)
678678
status(future, 'cracking multiple targets\r')

0 commit comments

Comments
 (0)