from idautils import * from idaapi import * from idc import * defmain(): msg("[lnf]: These are Null Functions\n") funcs = Functions() for func in funcs: # print(hex(func)) # print(get_bytes(func,1)) if get_bytes(func,1)[0]==0xc3: print(hex(func),"is a null function") if __name__=="__main__": main()
[lnf]List All Null functions starts [lnf]List All Null functions runs [lnf]: These are Null Functions 0x123410ad is a null function 0x1234116c is a null function 0x12341256 is a null function 0x123412ac is a null function 0x123412b8 is a null function 0x123412da is a null function 0x123412ee is a null function 0x123412fe is a null function 0x12341315 is a null function 0x12341326 is a null function 0x12341365 is a null function 0x12341389 is a null function 0x123413bc is a null function 0x12341454 is a null function 0x1234146b is a null function 0x123414e7 is a null function 0x123414fb is a null function 0x1234154c is a null function 0x12341560 is a null function 0x123415f3 is a null function 0x12341603 is a null function 0x12341617 is a null function 0x12341d7e is a null function [lnf]List Null Func stopped