found some more files
2
.gitattributes
vendored
@ -1,2 +1,4 @@
|
|||||||
.gitignore export-ignore
|
.gitignore export-ignore
|
||||||
.gitattributes export-ignore
|
.gitattributes export-ignore
|
||||||
|
doc/ export-ignore
|
||||||
|
screenshots/ export-ignore
|
BIN
doc/Anti-forensics for Internet Crime final.pdf
Normal file
BIN
doc/Project_Presentation_Final.pdf
Normal file
BIN
screenshots/BIOS_is_asking_for_Password_at_bootup.png
Executable file
After Width: | Height: | Size: 5.8 MiB |
BIN
screenshots/Electrum_Receive_example_address.png
Executable file
After Width: | Height: | Size: 65 KiB |
BIN
screenshots/File_hierachie_of_the_drugstore.png
Executable file
After Width: | Height: | Size: 391 KiB |
BIN
screenshots/Hidden_drugstore.png
Executable file
After Width: | Height: | Size: 327 KiB |
BIN
screenshots/Hidden_drugstore_bitcoin.png
Executable file
After Width: | Height: | Size: 52 KiB |
BIN
screenshots/Hidden_drugstore_cart.png
Executable file
After Width: | Height: | Size: 73 KiB |
BIN
screenshots/Hidden_drugstore_checkout_Lemmy.png
Executable file
After Width: | Height: | Size: 91 KiB |
BIN
screenshots/Hidden_drugstore_index.png
Executable file
After Width: | Height: | Size: 247 KiB |
BIN
screenshots/Hidden_drugstore_index_6_items_on_card.png
Executable file
After Width: | Height: | Size: 250 KiB |
BIN
screenshots/Live_HTTP_headers.png
Executable file
After Width: | Height: | Size: 64 KiB |
After Width: | Height: | Size: 299 KiB |
BIN
screenshots/Onion_address_of_hidden_service_in_server.png
Executable file
After Width: | Height: | Size: 110 KiB |
BIN
screenshots/Password_is_needed_to_decrypt_the_raid5_volume.png
Executable file
After Width: | Height: | Size: 11 MiB |
BIN
screenshots/Riseup.net_hidden-services.png
Normal file
After Width: | Height: | Size: 170 KiB |
BIN
screenshots/Riseup.net_registration.png
Normal file
After Width: | Height: | Size: 652 KiB |
BIN
screenshots/THE_SERVER_behind_DSL_router.png
Executable file
After Width: | Height: | Size: 10 MiB |
BIN
screenshots/THE_SERVER_behind_DSL_small.png
Executable file
After Width: | Height: | Size: 6.3 MiB |
After Width: | Height: | Size: 376 KiB |
BIN
screenshots/The_dealer_is_using_ruby_instead_of_php.png
Executable file
After Width: | Height: | Size: 218 KiB |
BIN
screenshots/The_dealer_is_using_sqlite_instead_of_mariadb.png
Executable file
After Width: | Height: | Size: 114 KiB |
21
tails-tweaker
Executable 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
|