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
<!DOCTYPE html> | |
<body> | |
<script> | |
var lenStart = 3; | |
var lenEnd = 3; | |
var chars = "abcdefghijklmnopqrstuvwxyz"; |
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
#![crate_type = "dylib"] | |
#![feature(link_args)] | |
extern crate libc; | |
pub type ClientIdT = u32; | |
#[no_mangle] | |
pub static _USES_DR_VERSION_:i32 = 500; | |
#[link(name="dynamorio")] |
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
use std::io; | |
fn main() { | |
let modules : Vec<&str> = vec!("a","dust","c"); | |
let m = modules.as_slice(); | |
let mut reader = io::stdin(); | |
let inp = reader.read_line().ok().expect("Failed to read line"); | |
if m.contains(&inp.trim()){ |
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
fn main() { | |
let k = murmur3_32("mqmqdpu".as_bytes(),0_u32); | |
println!("{:0>8t}",k); | |
println!("{:u}",k); | |
} | |
fn murmur3_32(key:&[u8],seed:u32)->u32{ | |
let c1:u32 = 0xcc9e2d51; |
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
Start with db path: | |
mongod --dbpath c:\db | |
repair db after unexpected shutdown: | |
mongod --dbpath c:\db --repair | |
backup: | |
mongodump --out /data/backup/ | |
restore: |
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
{ $project:{RequestedUrl:1,BodyInputs:1} }, | |
{ $unwind:"$BodyInputs" }, | |
{ $group : {_id:"$BodyInputs",RequestedUrl:{$push:"$RequestedUrl"}} } |
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
using System; | |
using System.Net; | |
using System.Threading; | |
namespace SimpleHttpServer | |
{ | |
public class SimpleHttpServer | |
{ | |
public static void Start() | |
{ |
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
using System; | |
using System.Collections.Generic; | |
using System.IO; | |
using System.Linq; | |
using System.Text; | |
using System.Threading.Tasks; | |
using System.Web; | |
namespace CreateSite | |
{ |
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
alert(1); |