Skip to content

Instantly share code, notes, and snippets.

View vwvw's full-sized avatar

vwvw

View GitHub Profile
BEGIN:VCALENDAR
PRODID:-//Google Inc//Google Calendar 70.9054//EN
VERSION:2.0
CALSCALE:GREGORIAN
METHOD:PUBLISH
X-WR-CALNAME:Intercession Explosion 18-19
X-WR-TIMEZONE:Europe/Zurich
X-WR-CALDESC:Voici un calendrier de l'Avant pour l'intercession pour Explos
ion 2018-2019
BEGIN:VEVENT
GNU gdb (Ubuntu 7.11.1-0ubuntu1~16.5) 7.11.1
Copyright (C) 2016 Free Software Foundation, Inc.
License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.html>
This is free software: you are free to change and redistribute it.
There is NO WARRANTY, to the extent permitted by law. Type "show copying"
and "show warranty" for details.
This GDB was configured as "x86_64-linux-gnu".
Type "show configuration" for configuration details.
For bug reporting instructions, please see:
<http://www.gnu.org/software/gdb/bugs/>.
(tfuzz_test) ➜ i386-linux-user git:(e5b3a24) gdb
GNU gdb (Ubuntu 7.11.1-0ubuntu1~16.5) 7.11.1
Copyright (C) 2016 Free Software Foundation, Inc.
License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.html>
This is free software: you are free to change and redistribute it.
There is NO WARRANTY, to the extent permitted by law. Type "show copying"
and "show warranty" for details.
This GDB was configured as "x86_64-linux-gnu".
Type "show configuration" for configuration details.
For bug reporting instructions, please see:
args given to subprocess32.Popen, seed file can be anything.
['gdbserver', 'host:1234', '/root/.virtual_envs/tfuzz_test/lib/python2.7/site-packages/shellphish_qemu/bin/shellphish-qemu-linux-i386', '-d', 'exec', '-D', '/dev/shm/tracer-log-6X4zsj', '/root/T-Fuzz/workdir_base64/base64_tfuzz/base64_tfuzz', '-d', '/root/T-Fuzz/seed']
@vwvw
vwvw / app.js
Created February 28, 2018 15:01
var express = require('express');
var app = express();
var multer = require('multer')
var upload = multer()
var bodyParser = require('body-parser');
app.use(bodyParser.json()); // for parsing application/json
app.use(bodyParser.urlencoded({ extended: true })); // for parsing application/x-www-form-urlencoded
app.get('*', function (req, res) {
@vwvw
vwvw / dynamicArrays.sol
Created June 19, 2017 21:38
This seems like a problem in solidity. PrintUint print number ascending from 1 to 4, instead of 1, 1, 2, 2
pragma solidity ^0.4.0;
contract test {
event PrintUint(uint256 _value);
function testA() {
uint256 x = 5;
uint256[] A;
uint256[] B;
for(uint256 i = 0; i < 2; i++) {
A.push(i);