All public logs
Jump to navigation
Jump to search
Combined display of all available logs of truxwiki.com. You can narrow down the view by selecting a log type, the username (case-sensitive), or the affected page (also case-sensitive).
(newest | oldest) View (newer 50 | older 50) (20 | 50 | 100 | 250 | 500)- 09:45, 16 June 2020 Sam talk contribs created page Truxton message get file id (Created page with "This retrieves the [https://en.wikipedia.org/wiki/Universally_unique_identifier GUID] of the file this message is about. This corresponds to the <code>ID</code> column of the...")
- 07:08, 16 June 2020 Sam talk contribs created page Truxton message set priority (Created page with "Tells sets the priority of this message in the queue. =Syntax= <syntaxhighlight lang="C"> void truxton_message_set_route_id( uint64_t message_handle, uint32_t route_id ); </s...")
- 07:04, 16 June 2020 Sam talk contribs created page Truxton message set route id (Created page with "Tells sets the route this media is taking through the exploitation process. This corresponds to the <code>ID</code> column of the <code>LoadConfiguration</code> table. =Synta...")
- 12:49, 15 June 2020 Sam talk contribs created page Turn on Syslogging (Created page with "Using syslog can be wonderful when debugging. =Syslog.Server= Use the Syslog.Server tool to be the syslog server on your local host. This will log to the filename you specify...")
- 07:43, 14 June 2020 Sam talk contribs created page Truxton file get depot id (Created page with "This retrieves the [https://en.wikipedia.org/wiki/Universally_unique_identifier GUID] of the depot where this file's contents are written. It corresponds to the <c...")
- 06:56, 14 June 2020 Sam talk contribs created page Truxton route message (Created page with "This sends the message to all ETL processes that have subscribed to it base on the message's route. =Syntax= <syntaxhighlight lang="C"> void truxton_rout...")
- 06:50, 14 June 2020 Sam talk contribs created page Truxton message set queue is empty (Created page with "Tells the receiver that their message queue is empty. =Syntax= <syntaxhighlight lang="C"> void truxton_message_set_queue_is_empty( uint64_t message_handle, uint32_t value );...")
- 16:01, 13 June 2020 Sam talk contribs created page Truxton message set truxton (Created page with "This sets the handle to the Truxton instance handling this message object. =Syntax= <syntaxhighlight lang="C"> void truxton_message_set_truxton( uint64_t message_handle, uint...")
- 07:43, 13 June 2020 Sam talk contribs created page Truxton message get truxton (Created page with "This retrieves the handle to the Truxton instance handling this message object. =Syntax= <syntaxhighlight lang="C"> uint64_t truxton_message_get_truxton( uint64_t message_han...")
- 07:33, 13 June 2020 Sam talk contribs created page Truxton message get dont route (Created page with "Tells you if your message should be forwarded to any other exploitation processes in the ETL layer. =Syntax= <syntaxhighlight lang="C"> uint32_t truxton_message_get_queue_get...")
- 07:09, 13 June 2020 Sam talk contribs created page Truxton message get file type (Created page with "Gives you the first four bytes of the file's contents. This signature is often times called a [https://en.wikipedia.org/wiki/Magic_number_(programming) magic value.] =Syntax=...")
- 06:42, 13 June 2020 Sam talk contribs created page Truxton message get signature (Created page with "Gives you the first four bytes of the file's contents. This signature is often times called a [https://en.wikipedia.org/wiki/Magic_number_(programming) magic value.] =Syntax=...")
- 06:30, 13 June 2020 Sam talk contribs created page Truxton message get depot length (Created page with "This tells you how many bytes in the depot file this file's contents consume. This corresponds to the <code>Length</code> column of the <code>Content</code> table....")
- 06:16, 13 June 2020 Sam talk contribs created page Truxton message get depot offset (Created page with "This tells you where in the depot file the file contents begin. This corresponds to the <code>Offset</code> column of the <code>Content</code> table. =Syntax= <syntaxhighligh...")
- 06:06, 13 June 2020 Sam talk contribs created page Truxton message get priority (Created page with "Tells you the priority of this message. The greater the value, the higher the priority. Priority 100 messages will be received by ETL processes before priority 1. =Syntax= <s...")
- 05:15, 13 June 2020 Sam talk contribs created page Truxton message get route id (Created page with "Tells you the route this media is taking through the exploitation process. This corresponds to the <code>ID</code> column of the <code>LoadConfiguration</code> table. =Syntax...")
- 03:45, 13 June 2020 Sam talk contribs created page Truxton message get queue is empty (Created page with "Tells you if your message queue is empty. =Syntax= <syntaxhighlight lang="C"> uint32_t truxton_message_get_queue_is_empty( uint64_t message_handle ); </syntaxhighlight> =Par...")
- 17:04, 12 June 2020 User account 216.73.216.125 talk was created by Admin talk contribs and password was sent by email
- 16:07, 12 June 2020 Sam talk contribs created page Python Sample Exploitation ETL (Created page with "<syntaxhighlight line lang="python"> import truxton def main(): etl = truxton.etl() etl.name = "My New ETL" etl.description = "This ETL processes files in the Tr...")
- 14:12, 12 June 2020 Sam talk contribs created page Python Sample Identification ETL (Created page with "This sample shows the steps needed to implement a byte identifier ETL in Python. <syntaxhighlight line lang="python"> import truxton def main(): etl = truxton.etl() etl...")
- 13:18, 12 June 2020 Sam talk contribs created page Truxton Top Level Object (Created page with "This is the object that is created when you <code>import truxton</code> =Methods= ==<code>create()</code>== It will return a Truxton Object which is basic...")
- 12:45, 12 June 2020 Sam talk contribs created page Python Sample Register a New File Type (Created page with "You can extend Truxton to process new file types. The first step in that process is to create an identifier for that file type and tell Truxton some details about it. =Autom...")
- 06:12, 12 June 2020 Sam talk contribs created page Truxton message destroy (Created page with "This frees any resources allocated for a message object. =Syntax= <syntaxhighlight lang="C"> void truxton_message_destroy( uint64...")
- 16:19, 11 June 2020 Sam talk contribs created page TruxtonFileType (Created page with "This class lets you add to the <code>FileType</code> table in Truxton. This is how you add your own file types to Truxton. =Attributes and Methods= ==<code>extension</code>=...")
- 16:02, 11 June 2020 Sam talk contribs created page Truxton file type set mime type (Created page with "This sets the most common [https://en.wikipedia.org/wiki/Media_type MIME type] associated with this type of file. This corresponds to the <code>MIME</code> column of the <code...")
- 16:00, 11 June 2020 Sam talk contribs created page Truxton file type set extension (Created page with "This sets [https://en.wikipedia.org/wiki/Filename_extension file name extension] most commonly used by this file type. This corresponds to the <code>Extension</code> column of...")
- 15:58, 11 June 2020 Sam talk contribs created page Truxton file type set long name (Created page with "This sets the long name of the file type. This corresponds to the <code>LongName</code> column of the <code>FileType</code> table. =Syntax= <syntaxhighlight lang="C"> void tr...")
- 15:56, 11 June 2020 Sam talk contribs created page Truxton file type set short name (Created page with "This sets the short name of the file type. This corresponds to the <code>ShortName</code> column of the <code>FileType</code> table. =Syntax= <syntaxhighlight lang="C"> void...")
- 15:54, 11 June 2020 Sam talk contribs created page Truxton file type set parent id (Created page with "This sets the valueof the more generic file type. This corresponds to the <code>ParentFileTypeID</code> column of the <code>FileType</code> table. This value, if non-zero, sho...")
- 15:52, 11 June 2020 Sam talk contribs created page Truxton file type set id (Created page with "This sets the value, from 11000 to 65000 excluding 32001, for the file type. This corresponds to the <code>ID</code> column of the <code>FileType</code> table. =Syntax= <synt...")
- 15:34, 11 June 2020 Sam talk contribs created page Truxton file type save (Created page with "This will commit the data in the file type object to the database. It will write a record to the <code>FileType</code> table. =Syntax= <syntaxhighlight lang="C"> int truxton_...")
- 15:14, 11 June 2020 Sam talk contribs created page Truxton file type get mime type (Created page with "This retrieves the most common [https://en.wikipedia.org/wiki/Media_type MIME type] associated with this type of file. =Syntax= <syntaxhighlight lang="C"> void truxton_file_t...")
- 15:11, 11 June 2020 Sam talk contribs created page Truxton file type get extension (Created page with "This retrieves the most common [https://en.wikipedia.org/wiki/Filename_extension file name extension] associated with this type of file. =Syntax= <syntaxhighlight lang="C"> v...")
- 15:06, 11 June 2020 Sam talk contribs created page Truxton file type get long name (Created page with "This retrieves the long name or description of the file type. =Syntax= <syntaxhighlight lang="C"> void truxton_file_type_get_long_name(uint64_t file_type, char * destination_...")
- 15:05, 11 June 2020 Sam talk contribs created page Truxton file type get short name (Created page with "This retrieves the short name of the file type. =Syntax= <syntaxhighlight lang="C"> void truxton_file_type_get_short_name(uint64_t file_type, char * destination_string, size_...")
- 14:58, 11 June 2020 Sam talk contribs created page Truxton file type get parent id (Created page with "This returns the integer identifier for the more generic file type of this file type. In Truxton, the concept of file type is a bit fluid. During exploitation, a file may have...")
- 14:47, 11 June 2020 Sam talk contribs created page Truxton file type get id (Created page with "This returns the integer identifier for the file type. =Syntax= <syntaxhighlight lang="C"> uint64_t truxton_file_type_get_id(uint64_t file_type); </syntaxhighlight> =Paramet...")
- 14:45, 11 June 2020 Sam talk contribs created page Truxton file type destroy (Created page with "This destroys a file type object. =Syntax= <syntaxhighlight lang="C"> void truxton_file_type_destroy(uint64_t file_type); </syntaxhighlight> =Parameters= ==<code>file_type</...")
- 14:41, 11 June 2020 Sam talk contribs created page Truxton file type create (Created page with "This creates a file type object. You can use this to extend Truxton with new file types. =Syntax= <syntaxhighlight lang="C"> uint64_t truxton_file_type_create(uint64_t truxto...")
- 14:54, 10 June 2020 Sam talk contribs created page TruxtonFileIO changetype (Created page with "This changes the type of the file. It modifies the <code>FileTypeID</code> column of the <code> File</code> table. =Syntax= <syntaxhighlight lang="Python"> bo...")
- 14:34, 10 June 2020 Sam talk contribs created page Truxton file change type (Created page with "This returns non-zero if the file's type was changed in the database. It corresponds to the <code>FileTypeID</code> column of the <code> File</code> table. =S...")
- 13:33, 10 June 2020 Sam talk contribs created page Add A New File Type (Created page with "Adding a new file type to Truxton can be as easy or as hard as you make it. This article will walk you through what must be done in order to extend Truxton with custom file ty...")
- 11:27, 10 June 2020 Sam talk contribs created page Carve Options (Created page with "Truxton has several options for [https://en.wikipedia.org/wiki/File_carving carving] files. This information is also kept in the <code>RelationType</code> database table. {|...")
- 10:44, 10 June 2020 Sam talk contribs created page Type Truxton Control Message Carve (Created page with "{| style="float:right;border:1px solid black" |+ Details | Defined Constant | <code>Type_Truxton_Control_Message_Carve</code> |- | File Type Value | 32001 |- | Parent Type | N...")
- 10:24, 10 June 2020 Sam talk contribs created page Truxton message create (Created page with "This creates a message object. =Syntax= <syntaxhighlight lang="C"> uint64_t truxton_message_create( void ); </syntaxhighlight> =...")
- 04:44, 10 June 2020 Sam talk contribs created page Type Camera Information (Created page with "{| style="float:right;border:1px solid black" |+ Details | Defined Constant | <code>Type_Camera_Information</code> |- | File Type Value | 52 |- | Parent Type | None |- | Carve...")
- 04:34, 10 June 2020 Sam talk contribs created page Type Event (Created page with "{| style="float:right;border:1px solid black" |+ Details | Defined Constant | <code>Type_Event</code> |- | File Type Value | 51 |- | Parent Type | None |- | Carve | No |- | Fo...")
- 04:24, 10 June 2020 Sam talk contribs created page Truxton file tag (Created page with "This will tag the file. =Syntax= <syntaxhighlight lang="C"> void truxton_file_tag(uint64_t file_handle, char const * tag_name, char const * why, uint64_t origin); </syntaxhig...")
- 04:15, 10 June 2020 Sam talk contribs created page Truxton file create usb (Created page with "This creates a USB device object sourced from this file that you can use in the USB Device Visit API. A USB object is how you add records to the...")
- 04:11, 10 June 2020 Sam talk contribs created page Truxton file create url (Created page with "This creates a website visit object sourced from this file that you can use in the Website Visit API. A URL object is how you add records to...")