View gist:b10fc0cd411994468ffe2013eb231e02
This file contains 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
### Keybase proof | |
I hereby claim: | |
* I am reinforchu on github. | |
* I am reinforchu (https://keybase.io/reinforchu) on keybase. | |
* I have a public key ASBD-OtHSb_0WevOO8tKudk4_q7uikJ2TSQNPI-hTxK5pgo | |
To claim this, I am signing this object: |
View autoPost.html
This file contains 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
<!DOCTYPE html> | |
<html lang="en"> | |
<head> | |
<meta charset="utf-8"> | |
<meta http-equiv="cache-control" content="no-cache, no-store"> | |
<meta http-equiv="pragma" content="no-cache"> | |
<meta name="expires" content="0"> | |
<title>Auto Login Demo</title> | |
</head> | |
<body> |
View Class1.cs
This file contains 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
using System; | |
using System.Web; | |
using System.Text.RegularExpressions; | |
namespace AZBlocker | |
{ | |
/// <summary> | |
/// *.azurewebsites.net access blocker | |
/// </summary> | |
public class Class1 : IHttpModule |
View Blocker.cs
This file contains 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
using System; | |
using System.Web; | |
using System.Text.RegularExpressions; | |
namespace localhostBlocker | |
{ | |
/// <summary> | |
/// localhost access blocker | |
/// </summary> | |
public class Blocker : IHttpModule |
View color.php
This file contains 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
<!DOCTYPE html> | |
<html> | |
<head> | |
<meta charset="utf-8"> | |
<style> | |
h3:after { | |
content: 'red'; | |
color: red; | |
} | |
h4:after { |
View web.config
This file contains 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
<?xml version="1.0" encoding="UTF-8"?> | |
<configuration> | |
<system.webServer> | |
<modules> | |
<add name="CustomHeader" type="CustomHeader.Class1" /> | |
</modules> | |
</system.webServer> | |
</configuration> |
View CustomHeader.cs
This file contains 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
using System; | |
using System.Web; | |
namespace CustomHeader | |
{ | |
/// <summary> | |
/// Add Custom Header | |
/// </summary> | |
public class Class1 : IHttpModule | |
{ |
View sslscan_install.sh
This file contains 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 | |
mkdir ~/Desktop/tmp | |
cd ~/Desktop/tmp | |
git clone https://github.com/rbsec/sslscan.git | |
cd sslscan | |
wget https://www.openssl.org/source/openssl-1.0.2d.tar.gz | |
tar -xzvf openssl-1.0.2d.tar.gz | |
mv openssl-1.0.2d.tar.gz openssl | |
xcode-select --install | |
cd openssl |
View xss.jpg
This file contains 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
<script>alert('gist XSS')</script> | |
<script>alert(location.href)</script> |
View gist:5154014
This file contains 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 | |
require_once('../../php_conf.inc'); | |
require_once('../../resource/MySQL/MySQL.php'); | |
require_once('../../resource/tmhOAuth/tmhOAuth.php'); | |
require_once('../../resource/tmhOAuth/tmhUtilities.php'); | |
$upload = new upload(); | |
/** | |
* コンテンツアップロード | |
* |
NewerOlder