Skip to content

mopsled/ida-pro-scripts

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

6 Commits
 
 
 
 
 
 

Repository files navigation

ida-pro-scripts

All scripts are written in IDAPython.

Script Descriptions

  • tlwdr3500-name-asserted-functions.py

    In the TLWDR3500 firmware, the __assert function uses the function name as a parameter whenever an assert is triggered, e.g.

    int parser_parse_entity(request_id *reqId) {
      if (reqId->sProtocol < 2) {
         __assert("reqId->sProtocol < 2", "httpOutput.c", 0x48, "httpStatusLine");
      }
      // ...
    }
    

    This script locates the fourth argument ($a3) in __assert function calls from unnamed functions (sub_*) and prints the results.

About

No description, website, or topics provided.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages