-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathsocks.pat
More file actions
30 lines (25 loc) · 1.07 KB
/
socks.pat
File metadata and controls
30 lines (25 loc) · 1.07 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
# SOCKS Version 5 - Firewall traversal protocol (RFC 1928)
# Usually runs on port 1080
# Also useful: http://www.iana.org/assignments/socks-methods
#
# This pattern is untested. If it does not
# work for you, or you believe it could be improved, please post to
# l7-filter-developers@lists.sf.net . This list may be subscribed to at
# http://lists.sourceforge.net/lists/listinfo/l7-filter-developers
# method request, no private methods \x05[\x01-\x08]*
# method reply, assumes sucess \x05[\x01-\x08]?
# method dependent sub-negotiation .*
# request, ipv4 only \x05[\x01-\x03][\x01\x03].*
# reply \x05[\x01-\x08]?[\x01\x03].*
# username/password method
# u/p request, assuming reasonable usernames and passwords
# \x05[\x02-\x10][a-z][a-z0-9\-]*[\x05-\x20][!-~]*
# server reply
# \x05
# GSSAPI method
# client initial token \x01\x01\x02.*
# server reply \x01\x01\x02.*
# any other method .* (all methods boil down to this until we have information
# about all the commonly used ones)
socks
\x05[\x01-\x08]*\x05[\x01-\x08]?.*\x05[\x01-\x03][\x01\x03].*\x05[\x01-\x08]?[\x01\x03]