1) Filter Table
Filter is default table for iptables. So, if you don’t define you own table, you’ll be using filter table. Iptables’s filter table has the following built-in chains.
| # Dictionary of common PE file sections and descriptions. | |
| # Taken from here: http://www.hexacorn.com/blog/2016/12/15/pe-section-names-re-visited/ | |
| common_sections_dict = {".00cfg":"Control Flow Guard CFG section added by newer versions of Visual Studio", \ | |
| ".apiset":"a section present inside the apisetschema.dll", \ | |
| ".arch":"Alpha-architecture section", \ | |
| ".autoload_text":"cygwin/gcc; the Cygwin DLL uses a section to avoid copying certain data on fork.", \ | |
| ".bindat":"Binary data also used by one of the downware installers based on LUA", \ | |
| ".bootdat":"section that can be found inside Visual Studio files; contains palette entries", \ | |
| ".bss":"Uninitialized Data Section", \ |
1) Filter Table
Filter is default table for iptables. So, if you don’t define you own table, you’ll be using filter table. Iptables’s filter table has the following built-in chains.
| function Get-InjectedThread | |
| { | |
| <# | |
| .SYNOPSIS | |
| Looks for threads that were created as a result of code injection. | |
| .DESCRIPTION | |