Skip to content

Instantly share code, notes, and snippets.

View reinforchu's full-sized avatar
🤒
Out sick

りいんちゃん reinforchu

🤒
Out sick
View GitHub Profile
@reinforchu
reinforchu / convertLocalTime
Created October 14, 2012 06:45
This is a function to convert local time to time format for twitter API.
/**
* Convert local time to time format for twitter API.
*
* @param timeStamp Time format for twitter API.
* @return Local time. Depends on the regional settings of the server and time.
*/
public static function convertLocalTime($timeStamp) {
if (isset($timeStamp) === FALSE) return FALSE;
sscanf($timeStamp, "%s %s %d %s %s %d", $week, $month, $day, $time, $gmt, $year);
$rcf2822 = "{$week}\054\040{$day}\040{$month}\040{$year}\040{$time}\040{$gmt}";
@reinforchu
reinforchu / php-Thumbnail
Created January 24, 2013 16:22
書きかけてすてすにゃー
<?php
require_once('../../MySQL.php');
error_reporting(-1);
$upload = new upload();
class upload {
public $file;
public $ext;
public $thumb;
private $date;
@reinforchu
reinforchu / gist:5154014
Last active December 14, 2015 21:49
こ…これ…これは…………りいんちゃんのクソコードだあああああ┗(^o^)┛wwwww┏(^o^)┓ドコドコドコドコwwwww
<?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();
/**
* コンテンツアップロード
*
@reinforchu
reinforchu / xss.jpg
Last active July 18, 2022 21:33
IE6/7 gist XSS (Internet Explorer vulnerability)
<script>alert('gist XSS')</script>
<script>alert(location.href)</script>
@reinforchu
reinforchu / sslscan_install.sh
Created August 2, 2015 16:26
SSLscan Install Script for OS X
#!/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
@reinforchu
reinforchu / CustomHeader.cs
Created December 19, 2018 10:38
CustomHeader
using System;
using System.Web;
namespace CustomHeader
{
/// <summary>
/// Add Custom Header
/// </summary>
public class Class1 : IHttpModule
{
@reinforchu
reinforchu / web.config
Created December 19, 2018 10:41
web.config
<?xml version="1.0" encoding="UTF-8"?>
<configuration>
<system.webServer>
<modules>
<add name="CustomHeader" type="CustomHeader.Class1" />
</modules>
</system.webServer>
</configuration>
@reinforchu
reinforchu / color.php
Created March 14, 2019 01:54
Possibility of DOM based XSS attack by Pseudo-elements from CSS Injection
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<style>
h3:after {
content: 'red';
color: red;
}
h4:after {
@reinforchu
reinforchu / Blocker.cs
Created February 9, 2020 02:51
localhostBlocker
using System;
using System.Web;
using System.Text.RegularExpressions;
namespace localhostBlocker
{
/// <summary>
/// localhost access blocker
/// </summary>
public class Blocker : IHttpModule
@reinforchu
reinforchu / Class1.cs
Created February 9, 2020 03:25
AZBlocker
using System;
using System.Web;
using System.Text.RegularExpressions;
namespace AZBlocker
{
/// <summary>
/// *.azurewebsites.net access blocker
/// </summary>
public class Class1 : IHttpModule