Skip to content

Instantly share code, notes, and snippets.

@skepticfx
skepticfx / gvisor-netstack-crash.txt
Created September 27, 2022 15:28
gvisor-netstack-crash
runtime: unexpected return pc for runtime.sigpanic called from 0xc000941878
stack: frame={sp:0xc000941788, fp:0xc0009417d8} stack=[0xc00093e000,0xc000942000)
0x000000c000941688: 0x000000c000941690 0x0000000000434fa0 <runtime.addOneOpenDeferFrame.func1+0x0000000000000000>
0x000000c000941698: 0x000000000044c3f6 <runtime.sigpanic+0x0000000000000336> 0x000000c000941788
0x000000c0009416a8: 0x000000c0005cd1e0 0x0000000000000000
0x000000c0009416b8: 0x000000c000941778 0x0000000000435766 <runtime.gopanic+0x0000000000000106>
0x000000c0009416c8: 0x0000000000000036 0x000000c000d21840
0x000000c0009416d8: 0x06400000d46b3400 0x000a0202000a8af6
0x000000c0009416e8: 0xd768fbdc26126402 0x1080587a51d277d2
0x000000c0009416f8: 0x01010000b0705119 0x2638d4e7b8960a08

Keybase proof

I hereby claim:

  • I am skepticfx on github.
  • I am skepticfx (https://keybase.io/skepticfx) on keybase.
  • I have a public key ASDBQHK-W1-359jnXLUrplIYc09wcdzgckEiuhgfBz3JEgo

To claim this, I am signing this object:

@skepticfx
skepticfx / keybase.md
Created April 17, 2015 23:18
Verify my keybase

Keybase proof

I hereby claim:

  • I am skepticfx on github.
  • I am skepticfx (https://keybase.io/skepticfx) on keybase.
  • I have a public key whose fingerprint is FF2B 49F5 E295 DDFE 0827 1858 5B2A F87E A4FA B7AF

To claim this, I am signing this object:

@skepticfx
skepticfx / iterate.js
Created November 1, 2013 20:05
Super Awesome Technique to simulate Synchronous Behavior in node.js (or) Looping asynchronous stuff synchronously a.k.a a Node.js Anti-Pattern
// Looping asynchronous stuff synchronously
// Lets say you have to do some asynchronous stuff, say scan() 'n' number of times but only synchronously in node.js
// You may end up doing this anti-pattern in node.js, because of performance and other stuffs.
var iterate = function(args, callback){
finish = 0;
loop(args, 0);
@skepticfx
skepticfx / Adobe Frame Buster
Created January 9, 2012 20:03
Adobe Frame Busting Exploit
if (top!=self){
top.location.href=self.location.href;
}
@skepticfx
skepticfx / manifest.json
Created December 27, 2011 18:44
Google Chrome Extension POC to steal a Twitter Login
{
"name": "Twitter Login Stealer POC",
"version": "1.0",
"description": "Steals the login data from Twitter",
"browser_action": {
"default_title": "Twitter Stealer"
},
"permissions": [""],
"content_scripts": [{