mirror of
https://github.com/bettercap/bettercap
synced 2025-07-06 04:52:10 -07:00
Changing http links to https when possible
This commit is contained in:
parent
2771821169
commit
c77645610a
6 changed files with 11 additions and 11 deletions
|
@ -3,7 +3,7 @@ GNU GENERAL PUBLIC LICENSE
|
|||
|
||||
Version 3, 29 June 2007
|
||||
|
||||
Copyright © 2007 Free Software Foundation, Inc. <<http://fsf.org/>>
|
||||
Copyright © 2007 Free Software Foundation, Inc. <<https://www.fsf.org/>>
|
||||
|
||||
Everyone is permitted to copy and distribute verbatim copies of this license
|
||||
document, but changing it is not allowed.
|
||||
|
@ -567,7 +567,7 @@ where the full notice is found.
|
|||
GNU General Public License for more details.
|
||||
|
||||
You should have received a copy of the GNU General Public License
|
||||
along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
along with this program. If not, see <https://www.gnu.org/licenses/>.
|
||||
|
||||
Also add information on how to contact you by electronic and paper mail.
|
||||
|
||||
|
@ -586,11 +586,11 @@ for a GUI interface, you would use an “about box”.
|
|||
You should also get your employer (if you work as a programmer) or school, if any, to
|
||||
sign a “copyright disclaimer” for the program, if necessary. For more
|
||||
information on this, and how to apply and follow the GNU GPL, see
|
||||
<<http://www.gnu.org/licenses/>>.
|
||||
<<https://www.gnu.org/licenses/>>.
|
||||
|
||||
The GNU General Public License does not permit incorporating your program into
|
||||
proprietary programs. If your program is a subroutine library, you may consider it
|
||||
more useful to permit linking proprietary applications with the library. If this is
|
||||
what you want to do, use the GNU Lesser General Public License instead of this
|
||||
License. But first, please read
|
||||
<<http://www.gnu.org/philosophy/why-not-lgpl.html>>.
|
||||
<<https://www.gnu.org/philosophy/why-not-lgpl.html>>.
|
||||
|
|
|
@ -61,7 +61,7 @@ Download and cross compile libpcap-1.8.1 for ARM (adjust `PCAPV` to use a differ
|
|||
|
||||
cd /tmp
|
||||
export PCAPV=1.8.1
|
||||
wget http://www.tcpdump.org/release/libpcap-$PCAPV.tar.gz
|
||||
wget https://www.tcpdump.org/release/libpcap-$PCAPV.tar.gz
|
||||
tar xvf libpcap-$PCAPV.tar.gz
|
||||
cd libpcap-$PCAPV
|
||||
export CC=arm-linux-gnueabi-gcc
|
||||
|
|
4
build.sh
4
build.sh
|
@ -25,8 +25,8 @@ download_pcap() {
|
|||
cd /tmp
|
||||
rm -rf libpcap-1.8.1
|
||||
if [ ! -f /tmp/libpcap-1.8.1.tar.gz ]; then
|
||||
echo "@ Downloading http://www.tcpdump.org/release/libpcap-1.8.1.tar.gz ..."
|
||||
wget -q http://www.tcpdump.org/release/libpcap-1.8.1.tar.gz -O /tmp/libpcap-1.8.1.tar.gz
|
||||
echo "@ Downloading https://www.tcpdump.org/release/libpcap-1.8.1.tar.gz ..."
|
||||
wget -q https://www.tcpdump.org/release/libpcap-1.8.1.tar.gz -O /tmp/libpcap-1.8.1.tar.gz
|
||||
fi
|
||||
tar xf libpcap-1.8.1.tar.gz
|
||||
}
|
||||
|
|
|
@ -5,7 +5,7 @@ events.clear
|
|||
|
||||
set net.sniff.verbose false
|
||||
set net.sniff.local true
|
||||
# http://biot.com/capstats/bpf.html
|
||||
# https://biot.com/capstats/bpf.html
|
||||
# set net.sniff.filter not arp and not udp port 53
|
||||
|
||||
net.sniff on
|
||||
|
|
|
@ -44,7 +44,7 @@ func Generate(certPath string, keyPath string) error {
|
|||
Country: []string{"US"},
|
||||
Locality: []string{"Scottsdale"},
|
||||
Organization: []string{"GoDaddy.com, Inc."},
|
||||
OrganizationalUnit: []string{"http://certs.godaddy.com/repository/"},
|
||||
OrganizationalUnit: []string{"https://certs.godaddy.com/repository/"},
|
||||
CommonName: "Go Daddy Secure Certificate Authority - G2",
|
||||
},
|
||||
NotBefore: notBefore,
|
||||
|
|
|
@ -77,7 +77,7 @@ func SignCertificateForHost(ca *tls.Certificate, host string, port int) (cert *t
|
|||
Country: []string{"US"},
|
||||
Locality: []string{"Scottsdale"},
|
||||
Organization: []string{"GoDaddy.com, Inc."},
|
||||
OrganizationalUnit: []string{"http://certs.godaddy.com/repository/"},
|
||||
OrganizationalUnit: []string{"https://certs.godaddy.com/repository/"},
|
||||
CommonName: "Go Daddy Secure Certificate Authority - G2",
|
||||
},
|
||||
NotBefore: notBefore,
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue