Changes between Version 18 and Version 19 of howto


Ignore:
Timestamp:
Aug 31, 2020, 1:20:49 PM (4 years ago)
Author:
tothm
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • howto

    v18 v19  
    181181 * {{{mods[name~\"xyz\"][.funs.calls[module~\"[^xyz].*\"]]}}} -- list all the modules staring with xyz that contains calls to modules that are not starting with xyz 
    182182 * {{{mods.funs.exprs.sub[type=integer, not .macro]}}} -- list the integers that are not defined in a macro 
    183  * {{{mods.funs.vars[name~\"atom\"], 
    184        mods.funs.vars[name~\"string\"] 
    185        mods.funs.vars[name~\"list\"]}}} -- list variable names containing the text atom, string, list, etc.. 
     183 * {{{mods.funs.vars[name~\"atom\"], mods.funs.vars[name~\"string\"], mods.funs.vars[name~\"list\"]}}} -- list variable names containing the text atom, string, list, etc.. 
     184 * {{{mods.funs.exprs.sub[type=tuple,[.sub[index>5]]]}}} -- list big tuples 
     185 * {{{mods.funs[.exprs.sub[type=tuple,[.sub[index>5]]]]}}} -- list functions containing big tuples 
     186 * {{{mods[no_tabs=false]}}} -- list modules containing tabs 
     187 * {{{mods.funs.exprs.sub[type=catch_expr]}}} -- list the expressions where catch used 
     188 * {{{mods.funs[.exprs.sub[type=catch_expr]]}}} -- list function conating catch 
    186189 
    187190== Detecting vulnerabilities