Skip to content

Commit

Permalink
Convert URLs from http to https where possible
Browse files Browse the repository at this point in the history
Prevents network attackers from manipulating traffic.

Suggested-by: check-all-the-things
  • Loading branch information
pabs3 committed May 25, 2020
1 parent 07ae695 commit fd6eb25
Show file tree
Hide file tree
Showing 8 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion README.md
Expand Up @@ -3,7 +3,7 @@
This application uses Linux network namespaces to perform network traces of a single application. The traces are saved as pcap files. And can later be analyzed by for instance Wireshark.

The nsntrace application is heavily inspired by the askbubuntu reply [here](http://askubuntu.com/a/499850).
The nsntrace application is heavily inspired by the askbubuntu reply [here](https://askubuntu.com/a/499850).
And uses the same approach only confined to a single C program.

What the application does is use the clone syscall to create a new
Expand Down
2 changes: 1 addition & 1 deletion src/capture.c
Expand Up @@ -10,7 +10,7 @@
* for more details.
*
* You should have received a copy of the GNU General Public License along
* with nsntraces; if not, see <http://www.gnu.org/licenses/>.
* with nsntraces; if not, see <https://www.gnu.org/licenses/>.
*/

#include <pcap.h>
Expand Down
2 changes: 1 addition & 1 deletion src/capture.h
Expand Up @@ -10,7 +10,7 @@
* for more details.
*
* You should have received a copy of the GNU General Public License along
* with nsntraces; if not, see <http://www.gnu.org/licenses/>.
* with nsntraces; if not, see <https://www.gnu.org/licenses/>.
*/

#ifndef _NSNTRACE_CAPTURE_H_
Expand Down
2 changes: 1 addition & 1 deletion src/cmd.c
Expand Up @@ -10,7 +10,7 @@
* for more details.
*
* You should have received a copy of the GNU General Public License along
* with nsntraces; if not, see <http://www.gnu.org/licenses/>.
* with nsntraces; if not, see <https://www.gnu.org/licenses/>.
*
*/

Expand Down
2 changes: 1 addition & 1 deletion src/cmd.h
Expand Up @@ -10,7 +10,7 @@
* for more details.
*
* You should have received a copy of the GNU General Public License along
* with nsntraces; if not, see <http://www.gnu.org/licenses/>.
* with nsntraces; if not, see <https://www.gnu.org/licenses/>.
*/

#ifndef _NSNTRACE_CMD_H_
Expand Down
2 changes: 1 addition & 1 deletion src/net.c
Expand Up @@ -10,7 +10,7 @@
* for more details.
*
* You should have received a copy of the GNU General Public License along
* with nsntraces; if not, see <http://www.gnu.org/licenses/>.
* with nsntraces; if not, see <https://www.gnu.org/licenses/>.
*
*/

Expand Down
2 changes: 1 addition & 1 deletion src/net.h
Expand Up @@ -10,7 +10,7 @@
* for more details.
*
* You should have received a copy of the GNU General Public License along
* with nsntraces; if not, see <http://www.gnu.org/licenses/>.
* with nsntraces; if not, see <https://www.gnu.org/licenses/>.
*/

#ifndef _NSNTRACE_NET_H_
Expand Down
2 changes: 1 addition & 1 deletion src/nsntrace.c
Expand Up @@ -10,7 +10,7 @@
* for more details.
*
* You should have received a copy of the GNU General Public License along
* with nsntraces; if not, see <http://www.gnu.org/licenses/>.
* with nsntraces; if not, see <https://www.gnu.org/licenses/>.
*
*/
#define _GNU_SOURCE
Expand Down

0 comments on commit fd6eb25

Please sign in to comment.