mirror of
https://github.com/lgandx/Responder.git
synced 2025-07-05 20:41:22 -07:00
Config dumped independently. Responder-Session.log is now a clean file.
This commit is contained in:
parent
35d933d596
commit
92c9191bda
2 changed files with 7 additions and 8 deletions
4
utils.py
4
utils.py
|
@ -130,6 +130,10 @@ def WriteData(outfile, data, user):
|
|||
with open(outfile,"a") as outf2:
|
||||
outf2.write(data + '\n')
|
||||
|
||||
# Function used to write debug config and network info.
|
||||
def DumpConfig(outfile, data):
|
||||
with open(outfile,"a") as dump:
|
||||
dump.write(data + '\n')
|
||||
|
||||
def SaveToDb(result):
|
||||
# Creating the DB if it doesn't exist
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue