$ netsh wlan show profiles
$ netsh wlan show profile NAME key=clearSecurity settings -> Key content : PASSWORD
| /*----------------------------------- | |
| OFF inspections | |
| -----------------------------------*/ | |
| document.addEventListener("contextmenu", (event) => event.preventDefault()); | |
| document.onkeydown = function (e) { | |
| if (event.keyCode == 123) { | |
| return false; | |
| } | |
| if (e.ctrlKey && e.shiftKey && e.keyCode == "I".charCodeAt(0)) { | |
| return false; |
| <?php | |
| $page_array = explode('/', $_SERVER['REQUEST_URI']) ; | |
| $page = end($page_array); | |
| $page = substr($page, 0, strpos($page, ".")); | |
| $page = str_replace("-", " ", $page); | |
| echo ucwords($page); | |
| ?> |
| /*------------------------------------------ | |
| Responsive Grid Media Queries - 1280, 1024, 768, 480 | |
| 1280-1024 - desktop (default grid) | |
| 1024-768 - tablet landscape | |
| 768-480 - tablet | |
| 480-less - phone landscape & smaller | |
| --------------------------------------------*/ | |
| @media all and (min-width: 1024px) and (max-width: 1280px) { } | |
| @media all and (min-width: 768px) and (max-width: 1024px) { } |
| <html lang="en"> | |
| <head> | |
| <meta charset="UTF-8"> | |
| <meta http-equiv="X-UA-Compatible" content="IE=edge"> | |
| <meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
| <title>Media Query</title> | |
| <style> | |
| h1{ | |
| display: none; | |
| } |
Download Metasploit from here Make sure trun off your Antivirus and Firewall before run installation After that go to the installation directory and run the below commands
| # This script hide's text behind any media file like jpg file, mp3 file ecetera. | |
| # This script accepts two parameter for hiding text and one parameter for finding text. | |
| # Please install steganography python library by - pip install steganography | |
| # This script is compatible with python 2.7 | |
| from __future__ import absolute_import,unicode_literals | |
| import argparse | |
| from steganography.steganography import Steganography | |
| parser=argparse.ArgumentParser() | |
| parser.add_argument("--carrier",help="Give path of carrier file which will contain our text.") |
| <html> | |
| <head> | |
| <!-- Inlined critical styles --> | |
| <style>.blue{color:blue;}</style> | |
| <!-- CSS loader --> | |
| <script> | |
| /* ========================================================================== | |
| Load CSS asynchronously and conditionally after initial painting |
| await page.setRequestInterception(true); | |
| //Request Blocker | |
| page.on('request', (req) => { | |
| if(req.resourceType() == 'stylesheet' || req.resourceType() == 'font' || req.resourceType() == 'image' || req.resourceType() == 'script'){ | |
| req.abort(); | |
| } | |
| else { | |
| req.continue(); | |
| } |