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
# -------- Preconnection Attacks | |
#============================================ | |
ifconfig wlan0 down | |
#change the mac address of wireless adapter | |
ifconfig wlan0 hw ether 00:11:22:33:44:55 | |
#---------helping process------ | |
airmon-ng check kill | |
#------------- | |
#turn on monitor mode, process 1, the device must be down | |
iwconfig wlan0 mode monitor |
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
/** | |
* | |
* Import Class | |
* A helper class for support CS to OCDI | |
* | |
*/ | |
if ( !class_exists( 'OCDI_Plugin' ) ) | |
return; |
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
// Post author id retrieving from a post | |
$post_author_id = get_post_field( 'post_author', get_the_ID() ); | |
// Get date from theme setttings | |
the_time( get_option( 'date_format' ) ) | |
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
Convert long array syntax into short array ones, | |
replace the line - Generic.Arrays.DisallowShortArraySyntax to Generic.Arrays.DisallowLongArraySyntax | |
------------ | |
<rule ref="Generic.Arrays.DisallowLongArraySyntax"> | |
<type>warning</type> | |
</rule> | |
Fix \r\n issue for spacing | |
----------- | |
<rule ref="Generic.Files.LineEndings"> |
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
{ | |
"$schema": "https://raw.githubusercontent.com/JanDeDobbeleer/oh-my-posh/main/themes/schema.json", | |
"console_title_template": " {{ .Folder }} :: {{if .Root}}Admin{{end}}", | |
"palette": { | |
"main-bg": "#24283b", | |
"terminal-red": "#f7768e", | |
"pistachio-green": "#9ece6a", | |
"terminal-green": "#73daca", | |
"terminal-yellow": "#e0af68", | |
"terminal-blue": "#7aa2f7", |
OlderNewer