Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 59b3b97

Browse files
committed
Trivial update
1 parent e3669c0 commit 59b3b97

3 files changed

Lines changed: 47 additions & 47 deletions

File tree

data/txt/sha256sums.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -187,7 +187,7 @@ bf77f9fc4296f239687297aee1fd6113b34f855965a6f690b52e26bd348cb353 lib/core/profi
187187
4eff81c639a72b261c8ba1c876a01246e718e6626e8e77ae9cc6298b20a39355 lib/core/replication.py
188188
bbd1dcda835934728efc6d68686e9b0da72b09b3ee38f3c0ab78e8c18b0ba726 lib/core/revision.py
189189
eed6b0a21b3e69c5583133346b0639dc89937bd588887968ee85f8389d7c3c96 lib/core/session.py
190-
29575cb33add984f5358380025db262f4875160869941fd3a882896fc5e94e70 lib/core/settings.py
190+
a8439bb8bfeb07e4edaf3a2114a2bc14b2d712e5003b8d434af68653c88e9d04 lib/core/settings.py
191191
2bec97d8a950f7b884e31dfe9410467f00d24f21b35672b95f8d68ed59685fd4 lib/core/shell.py
192192
e90a359b37a55c446c60e70ccd533f87276714d0b09e34f69b0740fd729ddbf8 lib/core/subprocessng.py
193193
54f7c70b4c7a9931f7ff3c1c12030180bde38e35a306d5e343ad6052919974cd lib/core/target.py

extra/icmpsh/README.txt

Lines changed: 45 additions & 45 deletions
Original file line numberDiff line numberDiff line change
@@ -1,45 +1,45 @@
1-
icmpsh - simple reverse ICMP shell
2-
3-
icmpsh is a simple reverse ICMP shell with a win32 slave and a POSIX compatible master in C or Perl.
4-
5-
6-
--- Running the Master ---
7-
8-
The master is straight forward to use. There are no extra libraries required for the C version.
9-
The Perl master however has the following dependencies:
10-
11-
* IO::Socket
12-
* NetPacket::IP
13-
* NetPacket::ICMP
14-
15-
16-
When running the master, don't forget to disable ICMP replies by the OS. For example:
17-
18-
sysctl -w net.ipv4.icmp_echo_ignore_all=1
19-
20-
If you miss doing that, you will receive information from the slave, but the slave is unlikely to receive
21-
commands send from the master.
22-
23-
24-
--- Running the Slave ---
25-
26-
The slave comes with a few command line options as outlined below:
27-
28-
29-
-t host host ip address to send ping requests to. This option is mandatory!
30-
31-
-r send a single test icmp request containing the string "Test1234" and then quit.
32-
This is for testing the connection.
33-
34-
-d milliseconds delay between requests in milliseconds
35-
36-
-o milliseconds timeout of responses in milliseconds. If a response has not received in time,
37-
the slave will increase a counter of blanks. If that counter reaches a limit, the slave will quit.
38-
The counter is set back to 0 if a response was received.
39-
40-
-b num limit of blanks (unanswered icmp requests before quitting
41-
42-
-s bytes maximal data buffer size in bytes
43-
44-
45-
In order to improve the speed, lower the delay (-d) between requests or increase the size (-s) of the data buffer.
1+
icmpsh - simple reverse ICMP shell
2+
3+
icmpsh is a simple reverse ICMP shell with a win32 slave and a POSIX compatible master in C or Perl.
4+
5+
6+
--- Running the Master ---
7+
8+
The master is straight forward to use. There are no extra libraries required for the C version.
9+
The Perl master however has the following dependencies:
10+
11+
* IO::Socket
12+
* NetPacket::IP
13+
* NetPacket::ICMP
14+
15+
16+
When running the master, don't forget to disable ICMP replies by the OS. For example:
17+
18+
sysctl -w net.ipv4.icmp_echo_ignore_all=1
19+
20+
If you miss doing that, you will receive information from the slave, but the slave is unlikely to receive
21+
commands send from the master.
22+
23+
24+
--- Running the Slave ---
25+
26+
The slave comes with a few command line options as outlined below:
27+
28+
29+
-t host host ip address to send ping requests to. This option is mandatory!
30+
31+
-r send a single test icmp request containing the string "Test1234" and then quit.
32+
This is for testing the connection.
33+
34+
-d milliseconds delay between requests in milliseconds
35+
36+
-o milliseconds timeout of responses in milliseconds. If a response has not received in time,
37+
the slave will increase a counter of blanks. If that counter reaches a limit, the slave will quit.
38+
The counter is set back to 0 if a response was received.
39+
40+
-b num limit of blanks (unanswered icmp requests before quitting
41+
42+
-s bytes maximal data buffer size in bytes
43+
44+
45+
In order to improve the speed, lower the delay (-d) between requests or increase the size (-s) of the data buffer.

lib/core/settings.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
from thirdparty.six import unichr as _unichr
2121

2222
# sqlmap version (<major>.<minor>.<month>.<monthly commit>)
23-
VERSION = "1.8.6.0"
23+
VERSION = "1.8.6.1"
2424
TYPE = "dev" if VERSION.count('.') > 2 and VERSION.split('.')[-1] != '0' else "stable"
2525
TYPE_COLORS = {"dev": 33, "stable": 90, "pip": 34}
2626
VERSION_STRING = "sqlmap/%s#%s" % ('.'.join(VERSION.split('.')[:-1]) if VERSION.count('.') > 2 and VERSION.split('.')[-1] == '0' else VERSION, TYPE)

0 commit comments

Comments
 (0)