Search results

  • SNBForums Code of Conduct

    SNBForums is a community for everyone, no matter what their level of experience.

    Please be tolerant and patient of others, especially newcomers. We are all here to share and learn!

    The rules are simple: Be patient, be nice, be helpful or be gone!

  1. Fitz Mutch

    MerlinWRT - compile instructions?

    My VM is 100GB size with 23% virtual disk space used after successfully compiling RT-AC86U firmware.
  2. Fitz Mutch

    MerlinWRT - compile instructions?

    I successfully built an RT-AC86U firmware with these script. ### Install fresh Ubuntu 18.04 LTS (Bionic Beaver) ubuntu-18.04.2-desktop-amd64.iso ### Apply OS updates and make bash the default shell (reboot required) sudo apt-get update && sudo apt-get -y dist-upgrade && sudo rm -f /bin/sh &&...
  3. Fitz Mutch

    MerlinWRT - compile instructions?

    And maybe the VM compile DD-WRT too, just in case? :)
  4. Fitz Mutch

    Merlin Firmware: .trx vs .w?

    I think you might try a clean VM because you could have mismatched libaries or submodules within binwalk. In deps.sh, I see this: function install_ubireader { git clone https://github.com/jrspruitt/ubi_reader # Some UBIFS extraction breaks after this commit, due to "Added fatal error...
  5. Fitz Mutch

    Merlin Firmware: .trx vs .w?

    I'm on this version here: Binwalk v2.1.2-a709e0e Craig Heffner, https://github.com/devttys0/binwalk # how to get this specific source version: cd git clone https://github.com/devttys0/binwalk cd binwalk git checkout a709e0e3409eee066fe225e906fa413e95ca75e0 sudo ./deps.sh sudo python setup.py...
  6. Fitz Mutch

    ASUS/Merlin emails can only do TLS1.0

    Hooray, it works now. As you stated, my ISP only support TLS1. So, I must use this option instead: -tls1 -CAfile /rom/etc/ssl/certs/ca-certificates.crt How to pump a message into sendmail with TLS1. export FROM="Me <horse@whitehouse.gov>" export TO="Everyone <biglist0000432@gmail.com>"...
  7. Fitz Mutch

    ASUS/Merlin emails can only do TLS1.0

    After trying it again with "-tls1", it gets farther along: depth=3 C = US, O = "Starfield Technologies, Inc.", OU = Starfield Class 2 Certification Authority verify error:num=19:self signed certificate in certificate chain 250 DSN sendmail: failed Also, added the vuln test results in their...
  8. Fitz Mutch

    ASUS/Merlin emails can only do TLS1.0

    My ISP is an old, family-owned business in a small town. Here is the results of the testssl.sh test. # ./testssl.sh -t=smtp smtp.whitehouse.gov:587 Service set: STARTTLS via SMTP Testing protocols via sockets SSLv2 not offered (OK) SSLv3 offered (NOT ok) TLS 1...
  9. Fitz Mutch

    ASUS/Merlin emails can only do TLS1.0

    I don't use the email.conf, instead I did exactly your example. Is it the SMTP server that is the problem? It belongs to my ISP. The SMTP server and E-mail names down below are faked because it's only an example. export FROM="Me <horse@whitehouse.gov>" export TO="Everyone...
  10. Fitz Mutch

    ASUS/Merlin emails can only do TLS1.0

    Why does it happen to me? 1077527472:error:14077102:SSL routines:SSL23_GET_SERVER_HELLO:unsupported protocol:s23_clnt.c:767: sendmail: helper exited (1)
  11. Fitz Mutch

    I would like to kill some of the processes permanently

    These processes could be killed. /jffs/scripts/init-start #!/bin/sh deny_access() { local FILEPATH="$1" local FILENAME="$(/usr/bin/basename $FILEPATH)" local FILEEXT="${FILENAME##*.}" if [ "$FILEEXT" == "ko" ]; then local MODULENAME="${FILENAME%.*}" local...
  12. Fitz Mutch

    Port forwarding not working with TOR function

    I think onion addresses work well because it does not rely on port forwarding.
  13. Fitz Mutch

    Cryptsetup Kernel Modules

    Not yet, I need to put a new flash chip in my RT-AC86U.
  14. Fitz Mutch

    Cryptsetup Kernel Modules

    I'm using an RT-AC68U + encrypted disk + encrypted swap, and it's usable for 1-2 people.
  15. Fitz Mutch

    Cryptsetup Kernel Modules

    Soon I will test this on my own RT-AC86U, which I must repair first because it previously suffered a bad firmware flash.
  16. Fitz Mutch

    Cryptsetup Kernel Modules

    If nothing else works, give this kernel config a try. It makes all the crypto mostly built-in to the kernel, no modules. https://github.com/blackfuel/asuswrt-merlin.ng/blob/master/release/src-rt-5.02hnd/kernel/linux-4.1/config_base.6a
  17. Fitz Mutch

    Cryptsetup Kernel Modules

    Might want to put it back, for this settings. CONFIG_CRYPTO_GF128MUL=y CONFIG_CRYPTO_SHA256=y
  18. Fitz Mutch

    Cryptsetup Kernel Modules

    Verify the kernel modules loaded? modprobe dm-mod modprobe dm-crypt modprobe gf128mul modprobe xts modprobe sha256_generic
  19. Fitz Mutch

    Cryptsetup Kernel Modules

    That assert is happening in libgpg-error, here: https://dev.gnupg.org/source/libgpg-error/browse/master/src/posix-lock.c;6eb80abcde5ad776379069871e4156b28ef69712$139 Try this: opkg remove cryptsetup opkg install cryptsetup-openssl There is problems with libgcrypt and libgpg-error on aarch64...
  20. Fitz Mutch

    Cryptsetup Kernel Modules

    Try both switches "--verbose --debug", to see more information? Try cryptsetup-openssl package instead? If this alternate package works for you, then the problem is either libgcrypt or libgpg-error packages compiled for aarch64. I can see the problem here...
Top