itsacoderepo
itsacoderepo
After importing the following code we are only seeing the first array `for(int i = 0; i
Hi, in the attached file are 1697 stubs of windows API functions. I wasn't sure if you want stubs in win_api_x86_32.py, so i didn't created a PR. But they could...
As discussed on discord, try to add support for .gpr files. Snippet from discord (https://discord.com/channels/832209896089976854/832209896089976857/876924134351839243) ``` try { projectManager = Some(new HeadlessGhidraProjectManager) if (inputFile.endsWith(".gpr")) { var projname = inputFile.substring(inputFile.lastIndexOf('/')+1, inputFile.lastIndexOf('.'))...
I would not consider jsp to be config files but code. Also added json and HTML files. The latter usually also does not contain configurations but i would expect it...
Add a query `undesired /dangerous type conversion` ``` for example : "int" to "short" int foo(int iPram) { int iBig = 0; short sSmall = 0; iBig = iPram; sSmall...
### Description The CPG contains function names with escape sequences, eg. `CHAT_PROTOCOL(server)->\\n\\t\\t\\tquery_create`. It seems to be a parsing error of: ``` query = CHAT_PROTOCOL(server)-> query_create(server->tag, nick, TRUE); ``` See: https://github.com/irssi/irssi/blob/master/src/fe-common/core/fe-queries.c#L53-L54...