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
________________________________________ | |
/ Leona, I want to CONFESS things to you \ | |
| ... I want to WRAP you in a SCARLET | | |
| ROBE trimmed with POLYVINYL CHLORIDE | | |
\ ... I want to EMPTY your ASHTRAYS ... / | |
---------------------------------------- | |
\ ,__, | |
\ (oo)____ | |
(__) )\ | |
||--|| * |
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
_______________________________________ | |
/ I used to think I was indecisive, but \ | |
\ now I'm not so sure. / | |
--------------------------------------- | |
\ ^__^ | |
\ (oo)\_______ | |
(__)\ )\/\ | |
||--WWW | | |
|| || |
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
_________________________________________ | |
/ It is only with the heart one can see \ | |
| clearly; what is essential is invisible | | |
| to the eye. | | |
| | | |
\ -- The Fox, 'The Little Prince" / | |
----------------------------------------- | |
\ | |
\ (__) | |
(\/) |
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
_________________________________________ | |
/ It is necessary to have purpose. \ | |
| | | |
\ -- Alice #1, "I, Mudd", stardate 4513.3 / | |
----------------------------------------- | |
\ , , | |
\ /( )` | |
\ \ \___ / | | |
/- _ `-/ ' | |
(/\/ \ \ /\ |
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
#!/bin/bash | |
ciphers=`nmap --script ssl-enum-ciphers -p 443 $1` | |
echo "$ciphers" | grep -q "SSLv3: No supported ciphers found" | |
if [ $? -eq 0 ];then | |
echo "Cipher not supported. No poodles."; | |
exit 1 # cipher not found | |
fi | |
echo "Cipher supported. Poodles."; |
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
0x000000000040052d <+0>: push rbp | |
0x000000000040052e <+1>: mov rbp,rsp | |
0x0000000000400531 <+4>: sub rsp,0x10 | |
=> 0x0000000000400535 <+8>: mov DWORD PTR [rbp-0x4],0x0 |
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
______ | |
< yes! > | |
------ | |
\ ^__^ | |
\ (oo)\_______ | |
(__)\ )\/\ | |
||----w | | |
|| || |
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
Loading composer repositories with package information | |
Reading composer.json of fuzz/laravel-admin (v4.0.0) | |
Importing tag v4.0.0 (4.0.0.0) | |
Reading composer.json of fuzz/laravel-admin (v4.1.0) | |
Importing tag v4.1.0 (4.1.0.0) | |
Reading composer.json of fuzz/laravel-admin (v4.1.1) | |
Importing tag v4.1.1 (4.1.1.0) | |
Reading composer.json of fuzz/laravel-admin (v4.1.10) | |
Importing tag v4.1.10 (4.1.10.0) | |
Reading composer.json of fuzz/laravel-admin (v4.1.11) |
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
SELECT * | |
FROM `associates` | |
WHERE `store_id` = ? | |
AND (SELECT Count(*) | |
FROM `departments` | |
INNER JOIN `associate_department` | |
ON `departments`.`id` = | |
`associate_department`.`department_id` | |
WHERE `associate_department`.`associate_id` = `associates`.`id` | |
AND (SELECT Count(*) |
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
<link rel="import" href="../core-scaffold/core-scaffold.html"> | |
<link rel="import" href="../core-header-panel/core-header-panel.html"> | |
<link rel="import" href="../core-menu/core-menu.html"> | |
<link rel="import" href="../core-item/core-item.html"> | |
<link rel="import" href="../core-icon-button/core-icon-button.html"> | |
<link rel="import" href="../core-toolbar/core-toolbar.html"> | |
<link rel="import" href="../core-menu/core-submenu.html"> | |
<link rel="import" href="../notification-elements/notification-alert.html"> | |
<link rel="import" href="../google-map/google-map.html"> |