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
01. Adobe Typekit fonts storage: | |
C:\Users\thAKare\AppData\Roaming\Adobe\CoreSync\plugins\livetype\ | |
02. Adobe Extensions folder: | |
C:\Program Files (x86)\Common Files\Adobe\CEP\extensions\ | |
C:\Users\<username>\AppData\Roaming\Adobe\CEP\extensions\ |
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
@echo off | |
:: ie4uinit.exe -show | |
ie4uinit.exe -ClearIconCache | |
taskkill /IM explorer.exe /F | |
del /A /Q "%localappdata%\IconCache.db" | |
del /A /F /Q "%localappdata%\Microsoft\Windows\Explorer\iconcache*" | |
shutdown /r /f /t 00 |
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
icacls "C:\Program Files\WindowsApps" /inheritance:r /remove:g Administrators |
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
explorer shell:system | |
explorer shell:appsfolder | |
explorer shell:cookies | |
explorer shell:cache | |
explorer shell:savedpictures | |
explorer shell:appdata | |
explorer shell:conflictfolder | |
explorer shell:savedgames | |
explorer shell:internetfolder | |
explorer shell:systemcertificates |
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
@echo off | |
:: This is not my code, the BadRabbit Ransomeware was posted on a following video: | |
:: https://www.youtube.com/watch?v=Y6WOpE92vKc | |
:: Idea for Petya Ransomeware was given on: | |
:: https://www.bleepingcomputer.com/news/security/vaccine-not-killswitch-found-for-petya-notpetya-ransomware-outbreak/ | |
:: I just made this to make it available easily. | |
:: For BadRabbit | |
type NUL > %windir%\cscc.dat |
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
:: Commands to Resolve Any System Integrity Issues | |
dism /online /cleanup-image /checkhealth | |
dism /online /cleanup-image /scanhealth | |
dism /online /cleanup-image /restorehealth | |
:: Helps with the notorious failed or non-responsive installation during the driver migration. | |
rundll32.exe pnpclean.dll,rundll_pnpclean /drivers /maxclean |
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
Show hidden characters
{ | |
"show_files": true, | |
"default_extension": ".php", | |
"folder_permissions": "777", | |
"file_permissions": "777", | |
} |
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
{ | |
"sidebar_no_icon": false, | |
"folder_no_icon": true, | |
"tabs_small": true, | |
"sidebar_size_12": true, | |
"sidebar_row_padding_large": true, | |
"status_bar_brighter": true, | |
"color_inactive_tabs": true, | |
"tabs_padding_small": true, | |
"tabs_label_not_italic": true, |
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
<?php | |
// original source: http://kuwamoto.org/2007/12/17/improved-pluralizing-in-php-actionscript-and-ror/ | |
/* | |
The MIT License (MIT) | |
Copyright (c) 2015 | |
Permission is hereby granted, free of charge, to any person obtaining a copy |
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
<?php | |
# A generic property reader abstraction | |
# https://ocramius.github.io/blog/accessing-private-php-class-members-without-reflection/ | |
$reader = function & ($object, $property) { | |
$value = & Closure::bind(function & () use ($property) { | |
return $this->$property; | |
}, $object, $object)->__invoke(); |