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
| class FormChecker { | |
| private $postdata; | |
| function __construct($POST) { | |
| $this->setPostData($POST); | |
| } | |
| private function setPostData($POST) { |
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
| sudo chmod -x /etc/grub.d/20_memtest86+ | |
| sudo update-grub | |
| -- reboot |
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
| sudo gedit /etc/lightdm/lightdm.conf | |
| -- append allow-guest=false | |
| -- save file | |
| sudo /etc/init.d/lighdm restart |
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 | |
| if(isset($_GET['uid']) && isset($_GET['mid'])){ | |
| $mailid = (int)$_GET['mid']; | |
| $userid = (int)$_GET['uid']; | |
| $db = new mysqli_connect('databaseserver', 'databaseuser', 'databasepassword', 'databasename'); | |
| $db->query("INSERT INTO mailreaders (mailid, userid) VALUES ($mailid, $userid)"); | |
| $im=imagecreatetruecolor(1,1); |
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 urllib2,os; pf='Package Control.sublime-package'; ipp=sublime.installed_packages_path(); os.makedirs(ipp) if not os.path.exists(ipp) else None; urllib2.install_opener(urllib2.build_opener(urllib2.ProxyHandler())); open(os.path.join(ipp,pf),'wb').write(urllib2.urlopen('http://sublime.wbond.net/'+pf.replace(' ','%20')).read()); print 'Please restart Sublime Text to finish installation' |