Browse Source

one-liners: minor fixes

- signed-off-by: trimstray <trimstray@gmail.com>
pull/83/head
trimstray 5 years ago
parent
commit
72b45043e6
1 changed files with 5 additions and 3 deletions
  1. +5
    -3
      README.md

+ 5
- 3
README.md View File

@@ -1513,8 +1513,9 @@ xargs strace -o /tmp/strace-apache-proc.out
###### Track with print time spent in each syscall and limit length of print strings ###### Track with print time spent in each syscall and limit length of print strings


```bash ```bash
ps auxw | grep '[i]init_policy' | awk '{print " -p " $2}' | xargs strace -f -e trace=network -T -s 10000
```
ps auxw | grep '[i]init_policy' | awk '{print " -p " $2}' | \
xargs strace -f -e trace=network -T -s 10000
```


###### Track the open request of a network port ###### Track the open request of a network port


@@ -2564,7 +2565,8 @@ _nmap_nse_scripts="+dns-brute,\


# Set Nmap NSE script params: # Set Nmap NSE script params:
_nmap_nse_scripts_args="dns-brute.domain=${_hosts},http-cross-domain-policy.domain-lookup=true," _nmap_nse_scripts_args="dns-brute.domain=${_hosts},http-cross-domain-policy.domain-lookup=true,"
_nmap_nse_scripts_args+="http-waf-detect.aggro,http-waf-detect.detectBodyChanges,http-waf-fingerprint.intensive=1"
_nmap_nse_scripts_args+="http-waf-detect.aggro,http-waf-detect.detectBodyChanges,"
_nmap_nse_scripts_args+="http-waf-fingerprint.intensive=1"


# Perform scan: # Perform scan:
nmap --script="$_nmap_nse_scripts" --script-args="$_nmap_nse_scripts_args" -p "$_ports" "$_hosts" nmap --script="$_nmap_nse_scripts" --script-args="$_nmap_nse_scripts_args" -p "$_ports" "$_hosts"


Loading…
Cancel
Save