I hereby claim:
- I am deadstar1 on github.
- I am adrianbelen (https://keybase.io/adrianbelen) on keybase.
- I have a public key ASBjYsKmxNqlpCdhAf2bWxzjiL9es59sOow5qdwwDupnfQo
To claim this, I am signing this object:
github搜索EA7E Single User License | |
----- BEGIN LICENSE ----- | |
Michael Barnes | |
Single User License | |
EA7E-821385 | |
8A353C41 872A0D5C DF9B2950 AFF6F667 | |
C458EA6D 8EA3C286 98D1D650 131A97AB | |
AA919AEC EF20E143 B361B1E7 4C8B7F04 | |
B085E65E 2F5F5360 8489D422 FB8FC1AA |
/** | |
* Wrapper | |
*/ | |
.wrapper { | |
max-width: -webkit-calc(#{$content-width} - (#{$spacing-unit} * 2)); | |
max-width: calc(#{$content-width} - (#{$spacing-unit} * 2)); | |
margin-right: auto; | |
margin-left: auto; | |
padding-right: $spacing-unit; |
""" | |
looks for parameter values that are reflected in the response. | |
Author: maradrianbelen.com | |
The scan function will be called for request/response made via ZAP, excluding some of the automated tools | |
Passive scan rules should not make any requests | |
Note that new passive scripts will initially be disabled | |
Right click the script in the Scripts tree and select "enable" |
{ | |
"always_prompt_for_file_reload": false, | |
"always_show_minimap_viewport": false, | |
"animation_enabled": true, | |
"atomic_save": false, | |
"auto_close_tags": true, | |
"auto_complete": true, | |
"auto_complete_commit_on_tab": false, | |
"auto_complete_cycle": false, | |
"auto_complete_delay": 50, |
#!/bin/sh | |
####################################### | |
# Bash script to install an AMP stack and PHPMyAdmin plus tweaks. For Debian based systems. | |
# Written by @AamnahAkram from http://aamnah.com | |
# In case of any errors (e.g. MySQL) just re-run the script. Nothing will be re-installed except for the packages with errors. | |
####################################### | |
#COLORS |
<?xml version="1.0" encoding="utf-8"?> | |
<mx:Module xmlns:fx="http://ns.adobe.com/mxml/2009" | |
xmlns:s="library://ns.adobe.com/flex/spark" | |
xmlns:mx="library://ns.adobe.com/flex/mx" | |
implements="interfaces.IModule1" | |
layout="vertical" width="100%" height="100%"> | |
<fx:Script> | |
<![CDATA[ | |
import contexts.Module1Context; | |
import flash.net.* |
I hereby claim:
To claim this, I am signing this object:
//implementing stack using arrays in c++ | |
#include <iostream> | |
using namespace std; | |
#define MAX_SIZE 101 | |
class Stack | |
{ | |
private: | |
int A[MAX_SIZE]; | |
int top; |
import subprocess | |
import re | |
import os | |
import sys | |
def scrape_url(value, outpath): | |
""" | |
Requires webkit2png to be on the path | |
""" | |
subprocess.call(["webkit2png", "-x","1200","900","-o", outpath, "-g", "1000", "1260", | |
"-t", "30", value]) |