Skip to content

Commit c497aa9

Browse files
committed
Minor TCP optimization
1 parent 4ba9e93 commit c497aa9

File tree

3 files changed

+9
-3
lines changed

3 files changed

+9
-3
lines changed

lib/core/option.py

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -893,6 +893,12 @@ def _thread():
893893
family, type, proto, address = key
894894
s = socket.socket(family, type, proto)
895895
s._connect(address)
896+
try:
897+
if type == socket.SOCK_STREAM:
898+
# Reference: https://www.techrepublic.com/article/tcp-ip-options-for-high-performance-data-transmission/
899+
s.setsockopt(socket.IPPROTO_TCP, socket.TCP_NODELAY, 1)
900+
except:
901+
pass
896902
with kb.locks.socket:
897903
socket._ready[key].append((s._sock, time.time()))
898904
except KeyboardInterrupt:

lib/core/settings.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
from lib.core.enums import OS
2020

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

txt/checksum.md5

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -42,14 +42,14 @@ cada93357a7321655927fc9625b3bfec lib/core/exception.py
4242
1e5532ede194ac9c083891c2f02bca93 lib/core/__init__.py
4343
458a194764805cd8312c14ecd4be4d1e lib/core/log.py
4444
7d6edc552e08c30f4f4d49fa93b746f1 lib/core/optiondict.py
45-
b3ffa34552b4594bbba54513069c642b lib/core/option.py
45+
01f7cc33862b2eb2e777f5aff326e2fb lib/core/option.py
4646
c8c386d644d57c659d74542f5f57f632 lib/core/patch.py
4747
6783160150b4711d02c56ee2beadffdb lib/core/profiling.py
4848
6f654e1715571eff68a0f8af3d62dcf8 lib/core/readlineng.py
4949
0c3eef46bdbf87e29a3f95f90240d192 lib/core/replication.py
5050
a7db43859b61569b601b97f187dd31c5 lib/core/revision.py
5151
fcb74fcc9577523524659ec49e2e964b lib/core/session.py
52-
7983dceb638a5ba80b33209140bb8531 lib/core/settings.py
52+
8e45f357b6d73d128267f3b66fe5e081 lib/core/settings.py
5353
a971ce157d04de96ba6e710d3d38a9a8 lib/core/shell.py
5454
a7edc9250d13af36ac0108f259859c19 lib/core/subprocessng.py
5555
1581be48127a3a7a9fd703359b6e7567 lib/core/target.py

0 commit comments

Comments
 (0)