Skip to content

Commit

Permalink
Fix escape char warning
Browse files Browse the repository at this point in the history
  • Loading branch information
D3vil0p3r committed Aug 31, 2024
1 parent 3f22984 commit fe4bc4b
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion core/cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -170,7 +170,7 @@ def set_options():
action='store_true',
help=('Trigger Windows Defender on nearby '
'devices by spawning an AP with SSID '
'set to C:\Temp\Invoke-Mimikatz.ps1'))
'set to C:\\Temp\\Invoke-Mimikatz.ps1'))

modes_group_.add_argument('--eap-spray',
dest='eap_spray',
Expand Down
2 changes: 1 addition & 1 deletion core/iw_parse/iw_parse.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
import re
import subprocess

VERSION_RGX = re.compile("version\s+\d+", re.IGNORECASE)
VERSION_RGX = re.compile(r"version\s+\d+", re.IGNORECASE)

def get_name(cell):
""" Gets the name / essid of a network / cell.
Expand Down
2 changes: 1 addition & 1 deletion core/wskeyloggerd/app.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@

from settings import settings

'''
r'''
. .
. =O===
. _ %- - %%%
Expand Down

0 comments on commit fe4bc4b

Please sign in to comment.