Commit Graph

1251 Commits

Author SHA1 Message Date
evilsocket 65b4f655c4 Merge pull request #144 from dadav/fix/hhmmss_translation
Fix translation
2019-10-05 14:23:32 +02:00
Simone Margaritelli 168df6454f merge
Signed-off-by: Simone Margaritelli <evilsocket@gmail.com>
2019-10-05 14:22:39 +02:00
Simone Margaritelli 02e6ccbd8e misc: refactored backup and update plugins 2019-10-05 14:22:20 +02:00
dadav 918da69cba Fix translation 2019-10-05 14:15:36 +02:00
evilsocket e297e315a3 Merge pull request #143 from swedishmike/doc_language_fix
Updated existing translations in config.yml
2019-10-05 13:57:31 +02:00
swedishmike 0edd0e9d49 Updated existing translations 2019-10-05 12:32:53 +01:00
Simone Margaritelli e9b9a1edb9 new: new auto-update plugin 2019-10-05 13:25:34 +02:00
Simone Margaritelli 03094264f0 fix: possible fix for ENOBUFS error while advertising (fixes #141) 2019-10-05 12:55:37 +02:00
evilsocket 4b9b2bad53 Merge pull request #140 from dadav/feature/auto-backup
Add auto-backup plugin
2019-10-05 12:29:00 +02:00
dadav 7db7874d8e More general variable 2019-10-05 11:32:54 +02:00
dadav 2bbe5cc9c3 Add auto-backup plugin 2019-10-05 11:20:22 +02:00
Cassiano Aquino 50dd651fab move dependencies to binary or deb packages 2019-10-04 23:15:47 +01:00
Simone Margaritelli 22f06df0a3 added hh mm ss localization (fix #134) 2019-10-04 19:03:33 +02:00
Simone Margaritelli 3c3ae2b30b fixed docs 2019-10-04 18:27:48 +02:00
Simone Margaritelli aedf670bcf misc: small fix or general refactoring i did not bother commenting 2019-10-04 15:38:07 +02:00
evilsocket e56a6396a5 Merge pull request #132 from dadav/fix/name_conflict
Fix name conflict
2019-10-04 14:30:22 +02:00
evilsocket f31dc5263f Merge pull request #136 from simpsora/rs-fix-update-config-filename
Fix incorrect config filename in update script
2019-10-04 14:29:56 +02:00
Ross Simpson 6e4fe624ec Fix incorrect config filename in update script
The update script backs up the config file to `/root/config.bak`, but
then tries to restore it from `/root/config.yml.bak` (which obviously
won't be found).

This looks like a typo in the backup command, so update that command to
use the same filename as the restore command.

Signed-off-by: Ross Simpson <ross@rosssimpson.com>
2019-10-04 22:01:44 +10:00
dadav 05e0cd161d Fix name conflict 2019-10-04 12:22:16 +02:00
evilsocket 87d8d4979b Merge pull request #131 from dadav/feature/plugin_config_in_mainconfig
Configure plugins via config.yml
2019-10-04 10:54:13 +02:00
dadav a99c21bbc5 Configure plugins via config.yml 2019-10-04 10:44:54 +02:00
Simone Margaritelli b402f0dad3 misc: small fix or general refactoring i did not bother commenting 2019-10-04 10:42:25 +02:00
evilsocket 046e9a0fe7 Merge pull request #125 from gh0stshell/master
Updated depends, updated bmap check
2019-10-04 10:40:10 +02:00
evilsocket 65c2a45665 Merge pull request #126 from JRWR/patch-2
Fixed Render crashing main thread
2019-10-04 10:30:03 +02:00
evilsocket 678b0e773c Merge pull request #127 from dadav/fix/remove_dependency
Upload via python library
2019-10-04 10:29:24 +02:00
evilsocket 6d31408893 Merge pull request #128 from dadav/feature/plugin_onlinehashcrack
New Plugin: Upload to onlinehashcrack.com
2019-10-04 10:29:01 +02:00
dadav d52ea8718f Be a lil bit more verbose 2019-10-04 09:33:11 +02:00
dadav 11f35f1230 Be a lil bit more verbose 2019-10-04 09:32:04 +02:00
dadav bc10be69a0 Add already submitted check 2019-10-04 09:26:08 +02:00
dadav 20a89f7323 Add code 2019-10-04 09:24:42 +02:00
dadav b8e6f9f979 Upload via python library 2019-10-04 09:11:32 +02:00
gh0stshell b7133e0040 Added known bug
Added known package bug, not sure what it affects, only shows during create script run
2019-10-03 19:07:13 -07:00
Forrest Fuqua 01535176ed Update create_sibling.sh
Fixed Array Call for the gender
2019-10-03 19:49:38 -04:00
Forrest Fuqua 31db4d062c Update Inky Render to not crash the script
Updated Inky so in case the render cannot display anything to the hardware everything else works (like the webbrowser) Other renders should do the same
2019-10-03 19:48:44 -04:00
gh0stshell 79871cd291 Updated depends, bmap check update
Removed bmap-tools from depends as the check on line 96 looks for bmaptools and would use it if available if not continue to build, but have it as a depend check made the check null and if someone is on a kernel/file-system that does not support SEEK_HOLE and SEEK_DATA the script just fails.

Fixed bmap-tools check as the line which bmaptool >/dev/null 2>&1 does not return 0 so it kept ending at this line, if bmap-tools were not installed

The original code below looks for sparse to be 0 and if which bmaptool >/dev/null 2>&1 returns 0 to use bmap-tools, but I think its the reverse so swapped the last then and else sections as it would then look if sparse is 0 and which bmaptool >/dev/null 2>&1 is 0 to not use bmap-tools, but if it is 1 to use bmap-tools. If tool is available = 1 use bmap-tools, if tools is unavailable=0 do not use bmap-tools:

if [ "${OPT_SPARSE}" -eq 0 ];
  then
    which bmaptool >/dev/null 2>&1
    if [ $? -eq 0 ];
    then
      echo "[+] Defaulting to sparse image generation as bmaptool is available"
      OPT_SPARSE=1
2019-10-03 16:21:02 -07:00
gh0stshell 83705c27f5 Updated depends, bmaptool check update
Removed bmap-tools from depends as the check on line 96 looks for bmaptools and would use it if available if not continue to build, but have it as a depend check made the check null and if someone is on a kernel/file-system that does not support SEEK_HOLE and SEEK_DATA the script just fails.

Fixed bmap-tools check as the line which bmaptool >/dev/null 2>&1 does not return 0 so it kept ending at this line, if bmap-tools were not installed

The original code below looks for sparse to be 0 and if which bmaptool >/dev/null 2>&1 returns 0 to use bmap-tools, but I think its the reverse so swapped the last then and else sections as it would then look if sparse is 0 and which bmaptool >/dev/null 2>&1 is 0 to not use bmap-tools, but if it is 1 to use bmap-tools. If tool is available = 1 use bmap-tools, if tools is unavailable=0 do not use bmap-tools:

if [ "${OPT_SPARSE}" -eq 0 ];
  then
    which bmaptool >/dev/null 2>&1
    if [ $? -eq 0 ];
    then
      echo "[+] Defaulting to sparse image generation as bmaptool is available"
      OPT_SPARSE=1
2019-10-03 16:19:47 -07:00
Simone Margaritelli 683d260c74 misc: small fix or general refactoring i did not bother commenting 2019-10-04 00:50:33 +02:00
Simone Margaritelli dae50bc65d misc: small fix or general refactoring i did not bother commenting 2019-10-04 00:48:15 +02:00
Simone Margaritelli 26fb21a7c7 misc: small fix or general refactoring i did not bother commenting 2019-10-04 00:42:12 +02:00
Simone Margaritelli b5f02f6172 misc: small fix or general refactoring i did not bother commenting 2019-10-04 00:36:25 +02:00
Simone Margaritelli 074f30f06f refactor 2019-10-04 00:33:44 +02:00
Simone Margaritelli affb8c27c3 refactor 2019-10-04 00:33:06 +02:00
Simone Margaritelli 641334c254 merge 2019-10-04 00:29:03 +02:00
Simone Margaritelli aeebf66fa7 added project subreddit 2019-10-04 00:28:49 +02:00
evilsocket 45d54c0ac5 Merge pull request #123 from evilsocket/add-code-of-conduct-1
Create CODE_OF_CONDUCT.md
2019-10-04 00:27:16 +02:00
evilsocket 499f137720 Create CODE_OF_CONDUCT.md 2019-10-04 00:27:05 +02:00
Simone Margaritelli ba15d1940a refactor 2019-10-04 00:26:00 +02:00
Simone Margaritelli 1ebec7691f merge 2019-10-04 00:11:44 +02:00
Simone Margaritelli cc19fb5b6e refactor 2019-10-04 00:11:31 +02:00
evilsocket 8242563d6f Merge pull request #121 from justin-p/win_connection_share.ps1
Win connection share.ps1
2019-10-04 00:03:01 +02:00