Difference between revisions of "TruxtonChildFileIO tag"
Jump to navigation
Jump to search
| (4 intermediate revisions by the same user not shown) | |||
| Line 1: | Line 1: | ||
This creates a tag associated with this file in Truxton. | This creates a tag associated with this file in Truxton. | ||
| + | This will add a record to the <code>[Tagged]</code> table in the database. | ||
=Syntax= | =Syntax= | ||
<syntaxhighlight lang="Python"> | <syntaxhighlight lang="Python"> | ||
| − | + | tag(tag: str, reason: str) -> boolean | |
</syntaxhighlight> | </syntaxhighlight> | ||
=Return value= | =Return value= | ||
| − | [https://docs.python.org/3. | + | [https://docs.python.org/3.10/library/constants.html?highlight=false#True True] if the tag was associated with the file, [https://docs.python.org/3.10/library/constants.html?highlight=false#False False] on failure. |
=Sample= | =Sample= | ||
| Line 35: | Line 36: | ||
if __name__ == "__main__": | if __name__ == "__main__": | ||
| − | main() | + | sys.exit(main()) |
</syntaxhighlight> | </syntaxhighlight> | ||
Latest revision as of 09:04, 3 February 2024
This creates a tag associated with this file in Truxton.
This will add a record to the [Tagged] table in the database.
Syntax
tag(tag: str, reason: str) -> boolean
Return value
True if the tag was associated with the file, False on failure.
Sample
import truxton
import shutil
from pathlib import Path
def add_file(parent_truxton_file, filename):
source_file = open(filename, "rb")
child = parent_truxton_file.newchild()
child.name = Path(filename).name
shutil.copyfileobj(source_file, child)
source_file.close()
child.save()
return child
def main():
t = truxton.create()
file = t.getfileid("5ec2a123-74d6-5da7-0653-4e6800000000")
child = add_child( file, "C:/Manual Exploitation/Clients.csv")
child.tag("Leads", "Manual recovery of client list")
return None
if __name__ == "__main__":
sys.exit(main())