Keybase proof
I hereby claim:
- I am mastert on github.
- I am lilc4t (https://keybase.io/lilc4t) on keybase.
- I have a public key ASByBSMHz-otsvW5oSCe_O6BEq_-79Y9wME-s_BO_g81wgo
To claim this, I am signing this object:
I hereby claim:
To claim this, I am signing this object:
export class CanceledError extends Error { | |
constructor (promise) { | |
super() | |
if (Error.captureStackTrace) { | |
Error.captureStackTrace(this, CanceledError) | |
} | |
this.promise = promise | |
this.isCanceled = true |
# Ruby is our language as asciidoctor is a ruby gem. | |
lang: ruby | |
before_install: | |
- sudo apt-get install pandoc | |
- gem install asciidoctor | |
script: | |
- make | |
after_success: | |
- .travis/push.sh | |
env: |
{url}
{description}
You have a data
file.
$ file data
data: data
alert("hacked"); |
52.197.140.254/are_you_rich/verify.php (maintenant indisponible)
En premier il fallait trouver que le chmap était injectable.
Avec des requêtes du genre:
blahblahblahblah' OR 1 = 1 --
Based on this Digital Ocean tutorial.
A great article on Ubuntu Community.
let f ?(x = Some("valeur par default")) () = | |
match x with | |
| Some (y) -> print_string y | |
| None -> print_string "None" | |
;; | |
(* val f : ?x:string option -> unit -> unit = <fun> *) | |
f ();; | |
(* valeur par default- : unit = () *) |
# update package list | |
sudo apt-get update | |
# install samba | |
sudo apt-get install samba samba-common-bin | |
# to use hfs+ file-system | |
sudo apt-get install hfsprogs | |
# list mounted disks, usfull to umount |