This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| http://www.squidguard.org/blacklists.html | |
| 4 List | |
| MESD blacklists | |
| http://squidguard.mesd.k12.or.us/blacklists.tgz | |
| Status: Downloaded | |
| Shalla's Blacklists (new site!) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| - Only Generate Keys | |
| - Note: Important Point to Note here is | |
| - We are aware about Assymetric Cryptography (Public Key Cryptography) | |
| - Certificate uses PKI to Generate Certificates | |
| - Meaning they Have a Public Key & a Private Key | |
| - Public Key is a Part of the Whole Certificate (Kind of a Element of the Certificate) | |
| - Private Key whereas is Store on the Server | |
| - Over here when we generate a Key here the key itself have enough contraints to built the Public Key (i.e in Simple Words: It holds both the Public Key & the Private Key ) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| ### SafeSquid Commands CheatSheet #### | |
| # Stop SafeSquid Properly, Since Monit will Start SafeSquid, We therefore have to Stop Monit First | |
| /etc/init.d/monit stop; /etc/init.d/safesquid stop | |
| # Remove All SSL Certificate (Root,Issuer,Server) | |
| rm -rfv /var/db/safesquid/ssl/* /usr/local/safesquid/security/ssl/* /usr/local/safesquid/security/ssl/{identity,subca} | |
| Monit | |
| --------- |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| ##### Sign Process | |
| ##### CA -> Intermediate CA -> Server | |
| # Create a Root CA | |
| ############## | |
| # Create CA | |
| ############## | |
| openssl req \ | |
| -subj "/C=IN/ST=Maharashtra/L=Mumbai City/O=Information Security Systems/OU=IT Services/CN=Test Root CA" \ | |
| -x509 \ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 1) Send Email on Config XML Change via Monit (Template) | |
| --------------------------------------------------------- | |
| set mailserver smtp.gmail.com port 587 | |
| username "temp@temp.com" password "tempPass" | |
| using tls | |
| set mail-format { | |
| from: SafeSquid Config Update <support@safesquid.net> | |
| reply-to: support@safesquid.net> | |
| subject: SafeSquid Config Change Alert @ $DATE |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| When Try to do a XSS | |
| I see that injecting | |
| <script>alert(1)</script> | |
| does not work and i was not able to understand it | |
| so after some research i found the below one | |
| Ref: | |
| https://security.stackexchange.com/questions/199827/injecting-scriptalert1-script-to-owasp-juice-shop-doesnt-work |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| set mailserver smtp.gmail.com port 587 | |
| username "---" password "--" | |
| using tls | |
| set mail-format { | |
| from: SafeSquid Config Update <support@safesquid.net> | |
| reply-to: support@safesquid.net> | |
| subject: SafeSquid Config Change Alert @ $DATE | |
| message: SafeSquid Config Has been Changed. | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| About FD | |
| ---------- | |
| From My Understandind: FD is like a Pointer to a Linux File | |
| =============================================================== | |
| The u flag simply means that the FD is read-write; w means write-only, r means read-only. | |
| In Simple Words How Kerberos Auth Works: | |
| ------------------------------------------ | |
| Link: https://apereo.github.io/cas/5.3.x/installation/SPNEGO-Authentication.html | |
| ======= |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # All About TLS |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Security Headers | |
| - Access-Control-Allow-Origin | |
| - This is required to be send by the remote web server | |
| - https://developer.mozilla.org/en-US/docs/Web/HTTP/CORS | |
| CORS | |
| - <img src="https://www.google.com/favicon.ico"> -> Does not Fall in CORS Policy [meaning for this image it is not required to ] |