VyhledΓ‘vacΓ nΓ‘stroj Google naleznate na internetovΓ© strΓ‘nce
www.google.com. NabΓdne vΓ‘m rΕ―znΓ© moΕΎnosti vyhledΓ‘vΓ‘nΓ. ProhledΓ‘vΓ‘ web,
obrΓ‘zky, skupiny a adresΓ‘Ε. Tyto moΕΎnosti poskytujΓ spoustu vΓ½hod pro
snadnΓ© surfovΓ‘nΓ na internetu, ale dovolujΓ i daleko vΓce neΔistΓ½ch
moΕΎnostΓ zcela zlomyslnΓ½m internetovΓ½m uΕΎivatelΕ―m jako hackerΕ―m,
poΔΓtaΔovΓ½m zloΔincΕ―m, zlodΔjΕ―m identit a dokonce i teroristΕ―m.
Tento dokument poukazuje na ΔernΓ© strΓ‘nky vyhledΓ‘vaΔe Google s tΓm, ΕΎe
bychom pro nΔj spoleΔnΔ mohli pouΕΎΓvat termΓn "Google hacking". CΓlem
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
(function() { | |
'use strict' | |
// -------------------------------------------------------------------------- | |
window.copyToClipboard = function copyToClipboard (value) { | |
if (!value) return // Can't copy zero characters! | |
const $input = Object.assign(document.createElement('input'), { | |
type: 'text', |
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
/* jshint asi: true, esnext: true */ | |
; (function() { | |
'use strict' | |
/* | |
Iterator for a selection's range objects e.g. | |
const r = [...ranges()] | |
*/ |
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
<?php | |
/* | |
* The MIT License | |
* | |
* Copyright (c) 2016 Frantisek Preissler <[email protected]> | |
* | |
* Permission is hereby granted, free of charge, to any person obtaining a copy | |
* of this software and associated documentation files (the "Software"), to deal | |
* in the Software without restriction, including without limitation the rights | |
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell |
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
#!/bin/sh | |
source ~/shell/colours.sh | |
B1=" ${YELLOW} β¦ ${YELLOW}" | |
B2=" ${CYAN} β ${WHITE}" | |
#B2=" ${BCYAN} β ${WHITE}" | |
echo | |
echo -e "${B1}Welcome ${BBLUE}${USERNAME}${YELLOW}!${RESET}" |
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
'use strict'; | |
// -------------------------------------------------------------------- | |
class Cache extends Map { | |
constructor(key) { | |
super() | |
this._key = key | |
this.load() | |
} |
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
#! /bin/sh | |
checksum=`echo $@ | sha1sum - | cut -d ' ' -f 1` | |
if ! [ -e /tmp/$checksum.ls-ZlaR ] | |
then | |
if ! ls -ZlaR $@ > /tmp/$checksum.ls-ZlaR | |
then | |
echo changed: could not create /tmp/$checksum.ls-ZlaR 1>&2 | |
exit 1 |
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
#! /bin/sh | |
# man2pdf -- Convert manual page to PDF via PS | |
# Copyright (C) 2012 Matous J. Fialka, <http://mjf.cz/> | |
# Released under the terms of The MIT License | |
groff='groff -Tps -mandoc' | |
ps2pdf='ps2pdf -' | |
file=file | |
man='man -w' |