This file contains 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
https://blog.talosintelligence.com/ | |
https://cyberscoop.com/ | |
https://danielmiessler.com/ | |
https://darknetdiaries.com/ | |
https://ecrime.ch/ | |
https://filippo.io/ | |
https://googleprojectzero.blogspot.com/ | |
https://intelnews.org/ | |
https://isc.sans.edu/podcast.html | |
https://jvns.ca/ |
This file contains 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
Ms Williams, Mr Michowski: | |
Instead of responding to your last email right away, I took some | |
time to think about this and discuss it with family and friends. | |
Nearly every person I described this situation to had the same | |
reaction I did. | |
Adia said, "Someone ran up, pulled on it and ran away." Not hard, | |
but it definitely felt like a pull (and it hurt). As soon as she | |
told me on Thursday, I thought, "Of course. Those ears were just |
This file contains 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
tracepoint:syscalls:sys_enter_socket {printf("family: 0x%08lx, type: 0x%08lx, protocol: 0x%08lx\n", args->family, args->type, args->protocol)} | |
tracepoint:syscalls:sys_exit_socket {printf("0x%lx\n", args->ret)} | |
tracepoint:syscalls:sys_enter_socketpair {printf("family: 0x%08lx, type: 0x%08lx, protocol: 0x%08lx, usockvec: 0x%08lx\n", args->family, args->type, args->protocol, args->usockvec)} | |
tracepoint:syscalls:sys_exit_socketpair {printf("0x%lx\n", args->ret)} | |
tracepoint:syscalls:sys_enter_bind {printf("fd: 0x%08lx, umyaddr: 0x%08lx, addrlen: 0x%08lx\n", args->fd, args->umyaddr, args->addrlen)} | |
tracepoint:syscalls:sys_exit_bind {printf("0x%lx\n", args->ret)} | |
tracepoint:syscalls:sys_enter_listen {printf("fd: 0x%08lx, backlog: 0x%08lx\n", args->fd, args->backlog)} | |
tracepoint:syscalls:sys_exit_listen {printf("0x%lx\n", args->ret)} | |
tracepoint:syscalls:sys_enter_accept4 {printf("fd: 0x%08lx, upeer_sockaddr: 0x%08lx, upeer_addrlen: 0x%08lx, flags: 0x%08lx\n", args->fd, args->upeer_sockaddr, args->upeer_addrlen, args- |
This file contains 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
/* | |
Testing a Cocoa application that establishes an SSL connection with | |
port 443 on a server, but does not use HTTP headers. Therefore, it was not | |
possible to use Burp to capture the transactions between the client and the | |
server. What follows below is the means to get a proxy up and running | |
without all the fiddling about and poking yourself in the eye with a | |
spork. Notes are formatted like comments. | |
*/ | |
## First, download and build socat: |
This file contains 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
package main | |
import ( | |
"bufio" | |
"fmt" | |
"os" | |
"strings" | |
"strconv" | |
) |
This file contains 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
#include <avr/io.h> | |
#include<stdio.h> | |
int main() | |
{ | |
printf("Hello, World!\n"); | |
return 0; | |
} |
This file contains 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
Mar 10 16:52:58 lollipop kernel[0] <Debug>: Google Chrome He (map: 0xffffff804d6e9b40) triggered DYLD shared region unnest for map: 0xffffff804d6e9b40, region 0x7fff87600000->0x7fff87800000. While not abnormal for debuggers, this increases system memory footprint until the target exits. | |
Mar 10 16:53:34 lollipop kernel[0] <Debug>: Google Chrome He (map: 0xffffff803f5094b0) triggered DYLD shared region unnest for map: 0xffffff803f5094b0, region 0x7fff87600000->0x7fff87800000. While not abnormal for debuggers, this increases system memory footprint until the target exits. | |
Mar 10 16:53:38 lollipop kernel[0] <Debug>: Google Chrome He (map: 0xffffff803f5091e0) triggered DYLD shared region unnest for map: 0xffffff803f5091e0, region 0x7fff87600000->0x7fff87800000. While not abnormal for debuggers, this increases system memory footprint until the target exits. | |
Mar 10 16:53:55 lollipop kernel[0] <Debug>: Google Chrome He (map: 0xffffff803f5094b0) triggered DYLD shared region unnest for map: 0xffffff803f5094b0, region 0 |
This file contains 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
Oh, I wear my pink pajamas in the summer when it's hot, | |
And I wear my flannel nighties in the winter when it's not, | |
And sometimes in the springtime, and sometimes in the fall, | |
I jump between the covers with nothing on at all! | |
Glory, glory, hallelujah! | |
Glory, glory, what's it to ya? | |
All the breezes blowin' through ya | |
With nothing on at all! |
This file contains 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
%form{"ng-submit" =>"submit()", "ng-controller" => "chalkboard"} | |
%ul{:style => "list-style:none;"} | |
%li{"ng-repeat" => "b in basics", :class => "form-inline"} | |
%label {{ b.label }} | |
%input{:type => {{ basics[$index].type }}, "ng-model" => "basics[$index].value"} | |
%input{:type => "submit", :id => "submit", :value => "Update"} |
This file contains 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
= stylesheet_link_tag "application", media: "all", "data-turbolinks-track" => true | |
= stylesheet_link_tag "bootstrap.min.css", media: "all", "data-turbolinks-track" => true | |
Result: | |
<link data-turbolinks-track="true" href="/assets/application.css?body=1" media="all" rel="stylesheet" /> | |
<link data-turbolinks-track="true" href="/stylesheets/bootstrap.min.css" media="all" rel="stylesheet" /> |
NewerOlder