found some more files

This commit is contained in:
Patrick Neumann 2018-06-16 21:47:33 +02:00
parent d0534f2b83
commit 8181499f80
24 changed files with 24 additions and 1 deletions

4
.gitattributes vendored
View File

@ -1,2 +1,4 @@
.gitignore export-ignore
.gitattributes export-ignore
.gitattributes export-ignore
doc/ export-ignore
screenshots/ export-ignore

Binary file not shown.

Binary file not shown.

Binary file not shown.

After

Width:  |  Height:  |  Size: 5.8 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 65 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 391 KiB

BIN
screenshots/Hidden_drugstore.png Executable file

Binary file not shown.

After

Width:  |  Height:  |  Size: 327 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 52 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 73 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 91 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 247 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 250 KiB

BIN
screenshots/Live_HTTP_headers.png Executable file

Binary file not shown.

After

Width:  |  Height:  |  Size: 64 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 299 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 110 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 11 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 170 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 652 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 10 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 6.3 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 376 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 218 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 114 KiB

21
tails-tweaker Executable file
View File

@ -0,0 +1,21 @@
#!/bin/bash
# switch to another keyboard layout if needed:
readonly LANG="de"
setxkbmap "${LANG}"
gsettings set org.gnome.desktop.input-sources sources "[('xkb', '${LANG}')]"
# generate profile by first start of firefox:
/usr/local/bin/tor-browser &
sleep 10
pkill firefox
# make firefox more "saver":
cd ~/.tor-browser/profile.default/
echo 'user_pref("javascript.enabled", false);' >> ./prefs.js
echo 'user_pref("extensions.torbutton.saved.sendSecureXSiteReferrer", false);' >> ./prefs.js
echo 'user_pref("network.http.sendRefererHeader", 0);' >> ./prefs.js
echo 'user_pref("network.http.sendSecureXSiteReferrer", false);' >> ./prefs.js
rm ~/.tor-browser/profile.default/extensions/\{d10d0bf8-f5b5-c8b4-a8b2-2b9879e08c5d\}
exit 0