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
% lsof | grep Flash | |
chromium 1691 keks 26u REG 8,2 520395 2142924 /tmp/FlashXXpYCsJW (deleted) | |
chromium 1691 keks 31u REG 8,2 3707862 2142925 /tmp/FlashXXappmLV (deleted) | |
chromium 1691 1693 keks 26u REG 8,2 520395 2142924 /tmp/FlashXXpYCsJW (deleted) | |
chromium 1691 1693 keks 31u REG 8,2 3707862 2142925 /tmp/FlashXXappmLV (deleted) | |
chromium 1691 1697 keks 26u REG 8,2 520395 2142924 /tmp/FlashXXpYCsJW (deleted) | |
chromium 1691 1697 keks 31u REG 8,2 3707862 2142925 /tmp/FlashXXappmLV (deleted) | |
chromium 1691 1698 keks 26u REG 8,2 520395 2142924 /tmp/FlashXXpYCsJW (deleted) | |
chromium 1691 1698 keks 31u REG 8,2 3707862 2142925 /tmp/FlashXXappmLV (deleted) | |
chromium 1691 1707 keks 26u REG 8,2 520395 2142924 /tmp/FlashXXpYCsJW (deleted) |
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 crypto = require('crypto'); | |
var fs = require('fs'); | |
fs.readFile('/tmp/4.jpg', function(err, data){ | |
if (!err){ | |
var cipher = crypto.createCipher('aes-256-cbc','abc') // set up cipher engine | |
var crypted = cipher.update(data,'binary','hex') | |
crypted += cipher.final('hex') | |
var decipher = crypto.createDecipher('aes-256-cbc','abc') //set up decipher engine |
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
CC=clang | |
CFLAGS=-Wall -Wextra -pedantic -std=c89 | |
LIBS=-lXmuu -lX11 -lXcursor | |
SRC=xfetchname.c | |
OBJS=$(SRC:.c=.o) | |
xfetchname: $(OBJS) | |
$(CC) $(CFLAGS) $(LDFLAGS) $(OBJS) $(LIBS) -o $@ |
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
{ | |
"total_rows": 1, | |
"offset": 0, | |
"rows": [{ | |
"id": "main", | |
"key": "main", | |
"value": { | |
"_id": "3ae31b9ea0560a740c051db5510014f2" | |
}, | |
"doc": { |
NewerOlder