sending mails using gwak

swaks --body 'Please visit this url <html><a href="https://">NextCloud</a></html>' --add-header "MIME-Version: 1.0" --add-header "Content-Type: text/html" --header "Subject: Document" -t [email protected] -f WHO@hehe --server 10.10.110.74

Symchk

cd "C:\\Program Files (x86)\\Windows Kits\\10\\Debuggers\\x64\\"

symchk /s srv*c:\\SYMBOLS*<https://msdl.microsoft.com/download/symbols> C:\\Windows\\System32\\*.dll

Openssl

#### View contents of PEM certificate file

openssl x509 -in CERTIFICATE.pem -text -noout 

#### Convert PEM certificate to DER

openssl x509 -outform der -in CERTIFICATE.pem -out CERTIFICATE.der

#### Create private key 
openssl genrsa -out 00security.com.key 4096

#### Create CSR, wildcard 
openssl req -new -key 00security.com.key -out 00security.com.csr -utf8 -batch -subj '/CN=*.kiwids.com/[email protected]'

#### Awk for better copy result of the cert
awk '{printf "%s\\\\n", $0}' kiwids.com.csr | xclip -sel clip

SMTP

https://mailtrap.io/blog/smtp-commands-and-responses/

### For SMTP server allows anonymous login
nc 10.10.110.1 25
VRFY kiwi
### Success verify
252 2.0.0 kiwi
VRF bob
550 5.1.1 <bob> : Recipient address rejected : User unknown in local recipient table 

Faketime

shout out to @szymex73

#### libfaketime intercepts various system calls that programs use to retrieve the
####current date and time. It then reports modified (faked) dates and times (as
####specified by you, the user) to these programs. This means you can modify the
####system time a program sees without having to change the time system-wide.

ANSI Decoder

certutil -asn certificate.cer

IPv6 Attack