language stringlengths 0 24 | filename stringlengths 9 214 | code stringlengths 99 9.93M |
|---|---|---|
aircrack-ng/.clang-format | ---
AlignAfterOpenBracket: Align
AlignConsecutiveAssignments: false
AlignConsecutiveDeclarations: false
AlignOperands: true
AlignTrailingComments: false
AllowShortCaseLabelsOnASingleLine: false
AllowShortFunctionsOnASingleLine: All
AllowShortIfStatementsOnASingleLine: true
AllowShortLoopsOnASingleLine: true
AlwaysBreak... | |
aircrack-ng/.codespellrc | [codespell]
skip = *.patch,./LICENSE.OpenSSL,./test/password.lst,./test/password-2.lst,./test/password-3.lst,
ignore-words-list = aci,ba,curent,datas,inout,keep-alives,nnumber,overthere,parm,parms,ue,varian,wan | |
aircrack-ng/.coverityignore | apparmor/
contrib/
manpages/
patches/
scripts/
.github/
.vscode/
.clang-format
.editorconfig
.gitignore
.pre-commit-config.yaml
AC_VERSION.in
AUTHORS
centos_autotools.sh
ChangeLog
docker_package_install.sh
Dockerfile
Dockerfile.release
INSTALLING
LICENSE.OpenSSL
README
SECURITY.md | |
aircrack-ng/.editorconfig | [*]
charset=utf-8
end_of_line=lf
insert_final_newline=false
indent_style=tab
indent_size=4
[{*.c,*.cp,*.cc,*.hpp,*.cpp,*.tcc,*.hp,*.cxx,*.icc,*.mm,*.hxx,*.ii,*.hh,*.m,*.i,*.h,*.h++,*.c++,*.pch,*.inl}]
indent_style=tab
indent_size=4
insert_final_newline=false
[{CMakeLists.txt,*.cmake}]
indent_style=space
indent_size=2... | |
aircrack-ng/.gitignore | /*-ng
/besside-ng-crawler
/ivstools
/kstats
/wpaclean
src/osdep/.os.Linux
src/osdep/libosdep.a
src/tags
tags
*.a
*.so
*.dll
*.o
*.exe
*.log
*.trs
*.zip
*.tar.*
common.cfg
Makefile.in
aclocal.m4
autom4te.cache/
compile
/config.h
/config.h.in
config.guess
config.log
config.status
config.sub
configure
install-sh
libtool
l... | |
YAML | aircrack-ng/.pre-commit-config.yaml | ---
# See https://pre-commit.com for more information
# See https://pre-commit.com/hooks.html for more hooks
exclude: >
(?x)^(
.github/|AUTHORS|ChangeLog|INSTALLING|LICENSE|README|
appveyor.yml|build/airpcap.dll.def|contrib/|lib/csharp|
lib/radiotap|include/aircrack-ng/third-party|patches/|
te... |
aircrack-ng/AUTHORS | Original Author
===============
Thomas d'Otreppe <tdotreppe@aircrack-ng.org>
Contributors
============
* Zero Chaos
- Airmon-ng maintainer
- Occasional driver patch fixer
- Driver tester
* Joseph Benden <joe@aircrack-ng.org>
- Instituted the project's coding style & formatting guidelines
- Performed conversio... | |
Shell Script | aircrack-ng/autogen.sh | #!/bin/sh
#
# Aircrack-ng
#
# Copyright (C) 2017 Joseph Benden <joe@benden.us>
#
# Autotool support was written by: Joseph Benden <joe@benden.us>
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation... |
Shell Script | aircrack-ng/centos_autotools.sh | #!/bin/sh
# Install newer version of autotools, automake, libtool, and pkgconfig on CentOS 7
if [ ! -f /etc/os-release ]; then
echo 'os-release not present, aborting'
exit 1
fi
. /etc/os-release
# Untested on Red Hat
if [ "x${ID}" != 'xcentos' ] && [ "x${ID}" != 'xredhat' ]; then
echo 'OS is not CentOS or Red Hat... |
aircrack-ng/ChangeLog | Version 1.7 (changes from aircrack-ng 1.6) - Released 10 May 2022:
* Airdecap-ng: Endianness fixes
* Airdecap-ng: Output PCAP as little endian
* Airodump-ng: Fixed blank encryption field when APs have TKIP (and/or CCMP) with WPA2
* Airodump-ng: Updated encryption filter (-t/--encrypt) for WPA3 and OWE
* Airodump-ng: Fi... | |
aircrack-ng/configure.ac | # Aircrack-ng
#
# Copyright (C) 2017-2022 Joseph Benden <joe@benden.us>
#
# Autotool support was written by: Joseph Benden <joe@benden.us>
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; eithe... | |
aircrack-ng/Dockerfile | ARG IMAGE_BASE=debian:unstable-slim
# hadolint ignore=DL3006
FROM ${IMAGE_BASE} AS builder
# Install dependencies for building
COPY docker_package_install.sh /
RUN sh /docker_package_install.sh builder
# Build Aircrack-ng
# hadolint ignore=DL3059
RUN mkdir -p /aircrack-ng /output
COPY . /aircrack-ng
WORKDIR /aircrack... | |
aircrack-ng/Dockerfile.release | ARG IMAGE_BASE=debian:unstable-slim
# hadolint ignore=DL3006
FROM ${IMAGE_BASE} AS builder
# https://docs.github.com/en/actions/learn-github-actions/environment-variables#default-environment-variables
# Tag name
ARG GITHUB_REF_NAME
# Install dependencies for building
COPY docker_package_install.sh /opt
RUN sh /opt/d... | |
Shell Script | aircrack-ng/docker_package_install.sh | #!/bin/sh
echo "[*] Installing packages"
STEP=$1
if [ -z "$STEP" ]; then
echo "[!] Must specify 'builder' or 'stage2' as arguments"
exit 1
elif [ "$STEP" = 'builder' ]; then
echo "[*] Builder step"
elif [ "$STEP" = 'stage2' ]; then
echo "[*] Stage2 step"
fi
# Load OS info
# shellcheck source=/dev/null... |
aircrack-ng/evalrev | #!/bin/sh
set -euf
DIR=${1:-}
CMD=${2:-}
SCM=""
if [ x$DIR = "x" ]
then
DIR="."
fi
if test -d "${DIR}/.git"; then
#
# Locate the closest annotated tag
#
REVISION="$(git describe --abbrev=0 --tags 2>/dev/null || echo unknown)"
#
# Determine if we are a development branch, if so then append... | |
aircrack-ng/INSTALLING | == Building ==
=== Requirements ===
* Autoconf
* Automake
* Libtool
* shtool
* OpenSSL development package or libgcrypt development package.
* Airmon-ng (Linux) requires ethtool, usbutils, and often pciutils.
* On Windows, cygwin has to be used and it also requires w32api package.
* On Windows, if using clang... | |
aircrack-ng/LICENSE | GNU GENERAL PUBLIC LICENSE
Version 2, June 1991
Copyright (C) 1989, 1991 Free Software Foundation, Inc.
51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
Everyone is permitted to copy and distribute verbatim copies
of this license document, but changing it is not allowed.
... | |
aircrack-ng/LICENSE.OpenSSL | LICENSE ISSUES
==============
The OpenSSL toolkit stays under a dual license, i.e. both the conditions of
the OpenSSL License and the original SSLeay license apply to the toolkit.
See below for the actual license texts. Actually both licenses are BSD-style
Open Source licenses. In case of any license issues ... | |
aircrack-ng/Makefile.am | # Aircrack-ng
#
# Copyright (C) 2017 Joseph Benden <joe@benden.us>
#
# Autotool support was written by: Joseph Benden <joe@benden.us>
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; either ver... | |
aircrack-ng/Makefile.integration.mk | INTEGRATION_TEST_SUITE_LOG = integration-test-suite.log
am__set_INTEGRATION_TESTS_bases = \
bases='$(INTEGRATION_TEST_LOGS)'; \
bases=`for i in $$bases; do echo $$i; done | sed 's/\.log$$//'`; \
bases=`echo $$bases`
am__integration_test_logs1 = $(INTEGRATION_TESTS:=.log)
INTEGRATION_TEST_LOGS = $(am__integration_te... | |
aircrack-ng/README | Documentation, tutorials, ... can be found on https://www.aircrack-ng.org
See also manpages and the forum (GitHub Discussions).
Installing
==========
This version has more dependencies/libraries required than previous versions to be compiled.
See INSTALLING file for more information
OpenWrt Devices
===============
... | |
Markdown | aircrack-ng/README.md | # Aircrack-ng
## Badges
### GitHub CI
[](https://github.com/aircrack-ng/aircrack-ng/actions/workflows/almalinux.yml)
[ push to DockerHub
on:
push:
branches:
- 'master'
paths-ignore:
- '.devcontainer/**'
- '.coverityignore'
- '.github/workflows/gentoo.yml'
- '.github/ISSUE_TEMPLATE/**'
- '.github/workflows/almalinux.yml'
- '.github/workflows/alpine.yml'
- '.gi... |
YAML | aircrack-ng/.github/workflows/dragonflybsd.yml | name: DragonFlyBSD CI
on:
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
push:
branches: [ master ]
paths-ignore:
- apparmor/**
- contrib/**
- manpages/**
- patches/**
- '.coverityignore'
- '.github/workflows/gentoo.yml'
- '.g... |
YAML | aircrack-ng/.github/workflows/freebsd.yml | name: FreeBSD CI
on:
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
push:
branches: [ master ]
paths-ignore:
- apparmor/**
- contrib/**
- manpages/**
- patches/**
- '.coverityignore'
- '.github/workflows/gentoo.yml'
- '.github... |
YAML | aircrack-ng/.github/workflows/gentoo.yml | name: Gentoo CI
on:
push:
branches: [ master ]
paths:
- '.github/workflows/gentoo.yml'
pull_request:
branches: [ master ]
paths:
- '.github/workflows/gentoo.yml'
workflow_call:
workflow_dispatch:
jobs:
gentoo:
runs-on: ubuntu-22.04
steps:
-
name: Git Checko... |
YAML | aircrack-ng/.github/workflows/irc.yml | name: IRC notifications
on: [push, pull_request, create, issues]
jobs:
notification:
runs-on: ubuntu-22.04
name: IRC Notification
steps:
- name: Skip if not aircrack-ng/aircrack-ng
run: |
if [ "${{ github.repository }}" != 'aircrack-ng/aircrack-ng' ]; then
exit 1
fi
... |
YAML | aircrack-ng/.github/workflows/kali.yml | name: Kali Linux CI
on:
push:
branches:
- 'master'
paths-ignore:
- '.devcontainer/**'
- '.coverityignore'
- '.github/workflows/gentoo.yml'
- '.github/ISSUE_TEMPLATE/**'
- '.github/workflows/almalinux.yml'
- '.github/workflows/alpine.yml'
- '.github/workflows/ch... |
YAML | aircrack-ng/.github/workflows/linux-pcre.yml | name: Linux PCRE CI
on:
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
push:
branches: [ master ]
paths-ignore:
- apparmor/**
- contrib/**
- manpages/**
- patches/**
- test/**
- '.coverityignore'
- '.github/workflows/gentoo.ym... |
YAML | aircrack-ng/.github/workflows/linux.yml | name: Linux CI
on:
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
push:
branches: [ master ]
paths-ignore:
- apparmor/**
- contrib/**
- manpages/**
- patches/**
- '.coverityignore'
- '.github/workflows/gentoo.yml'
- '.github/I... |
YAML | aircrack-ng/.github/workflows/macos.yml | name: macOS CI
on:
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
push:
branches: [ master ]
paths-ignore:
- apparmor/**
- contrib/**
- manpages/**
- patches/**
- '.coverityignore'
- '.github/workflows/gentoo.yml'
- '.github/I... |
YAML | aircrack-ng/.github/workflows/manual.yml | name: Other Linux testing
on:
push:
branches: [ master ]
paths:
- '.github/workflows/manual.yml'
pull_request:
branches: [ master ]
paths:
- '.github/workflows/manual.yml'
workflow_call:
workflow_dispatch:
schedule:
- cron: "0 0 2 * *"
jobs:
lint:
runs-on: ubuntu-22.04
... |
YAML | aircrack-ng/.github/workflows/markdown-link.yml | name: "Markdown link check"
on:
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
push:
branches: [ master ]
paths:
- .github/workflows/markdown-link.yml
- '**.md'
pull_request:
branches: [ master ]
paths:
- .github/workflows/markdown-link.ym... |
YAML | aircrack-ng/.github/workflows/netbsd.yml | name: NetBSD CI
on:
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
push:
branches: [ master ]
paths-ignore:
- apparmor/**
- contrib/**
- manpages/**
- patches/**
- '.coverityignore'
- '.github/workflows/gentoo.yml'
- '.github/... |
YAML | aircrack-ng/.github/workflows/openbsd.yml | name: OpenBSD CI
on:
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
push:
branches: [ master ]
paths-ignore:
- apparmor/**
- contrib/**
- manpages/**
- patches/**
- '.coverityignore'
- '.github/workflows/gentoo.yml'
- '.github... |
YAML | aircrack-ng/.github/workflows/pvs-studio.yml | name: PVS-Studio Analysis
on:
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
push:
branches: [ master ]
paths-ignore:
- apparmor/**
- contrib/**
- manpages/**
- patches/**
- '.devcontainer/**'
- '.coverityignore'
- '.github/wo... |
YAML | aircrack-ng/.github/workflows/scanbuild.yml | name: Clang Scan-build
on:
push:
branches: [ master ]
paths:
- '.github/workflows/scanbuild.yml'
workflow_dispatch:
schedule:
- cron: "0 1 * * *"
pull_request:
branches: [ master ]
paths-ignore:
- apparmor/**
- contrib/**
- manpages/**
- patches/**
- '.co... |
YAML | aircrack-ng/.github/workflows/style.yml | name: "Style & Consistency"
on:
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
push:
branches: [ master ]
paths-ignore:
- apparmor/**
- contrib/**
- manpages/**
- patches/**
- scripts/**
- '.devcontainer/**'
- '.coverityignore... |
YAML | aircrack-ng/.github/workflows/windows.yml | name: Windows CI
on:
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
push:
branches: [ master ]
paths-ignore:
- apparmor/**
- contrib/**
- manpages/**
- patches/**
- '.coverityignore'
- '.github/workflows/gentoo.yml'
- '.github... |
JSON | aircrack-ng/.vscode/c_cpp_properties.json | {
"configurations": [
{
"name": "Linux",
"includePath": [
"${workspaceFolder}/**"
],
"defines": [],
"compilerPath": "/usr/local/bin/clang",
"cStandard": "c11",
"cppStandard": "c++17",
"intelliSens... |
JSON | aircrack-ng/.vscode/launch.json | {
// Use IntelliSense to learn about possible attributes.
// Hover to view descriptions of existing attributes.
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.2.0",
"configurations": [
{
"name": "(gdb) Launch aircrack-ng",
"type": "cppdbg",
"request": "launc... |
JSON | aircrack-ng/.vscode/tasks.json | {
// See https://go.microsoft.com/fwlink/?LinkId=733558
// for the documentation about the tasks.json format
"version": "2.0.0",
"tasks": [
{
"label": "Build Incremental",
"type": "shell",
"command": "make -j6 && make -j6 check",
"group": {
"kind": "build",
"isDefault": true
},
"problemM... |
aircrack-ng/apparmor/usr.bin.aircrack-ng | #include <tunables/global>
/usr/bin/aircrack-ng {
#include <abstractions/base>
#include <abstractions/private-files-strict>
# No need to access dot files
deny @{HOME}/.** rw,
# For reading pcap files (and sqldb)
@{HOME}/** r,
/tmp/** r,
# For -l (and writing sqldb)
owner @{HOME}/** w,
owner /t... | |
aircrack-ng/apparmor/usr.bin.airdecap-ng | #include <tunables/global>
/usr/bin/airdecap-ng {
#include <abstractions/base>
#include <abstractions/private-files-strict>
# No need to access dot files
deny @{HOME}/.** rw,
# For reading pcap files
@{HOME}/** r,
/tmp/** r,
# For writing output files
owner @{HOME}/** w,
owner /tmp/** w,
# ... | |
aircrack-ng/apparmor/usr.bin.airdecloak-ng | #include <tunables/global>
/usr/bin/airdecloak-ng {
#include <abstractions/base>
#include <abstractions/private-files-strict>
# No need to access dot files
deny @{HOME}/.** rw,
# For reading pcap files
@{HOME}/** r,
/tmp/** r,
# For writing output files
owner @{HOME}/** w,
owner /tmp/** w,
... | |
aircrack-ng/apparmor/usr.bin.airgraph-ng | #include <tunables/global>
/usr/bin/airgraph-ng {
#include <abstractions/base>
#include <abstractions/private-files-strict>
# No need to access dot files
deny @{HOME}/.** rw,
# For reading input
@{HOME}/** r,
/tmp/** r,
# For writing output
owner @{HOME}/** w,
owner /tmp/** w,
# For executi... | |
aircrack-ng/apparmor/usr.bin.airolib-ng | #include <tunables/global>
/usr/bin/airolib-ng {
#include <abstractions/base>
#include <abstractions/private-files-strict>
# No need to access dot files
deny @{HOME}/.** rw,
# For reading database files
@{HOME}/** r,
/tmp/** r,
# For writing database files and exporting cowpatty files
owner @{HO... | |
aircrack-ng/apparmor/usr.bin.buddy-ng | #include <tunables/global>
/usr/bin/buddy-ng {
#include <abstractions/base>
capability setgid,
capability setuid,
capability sys_chroot,
network inet dgram,
network inet stream,
/usr/bin/buddy-ng mr,
} | |
aircrack-ng/apparmor/usr.bin.ivstools | #include <tunables/global>
/usr/bin/ivstools {
#include <abstractions/base>
#include <abstractions/private-files-strict>
capability dac_override,
deny @{HOME}/.** rw,
@{HOME}/** r,
owner @{HOME}/** w,
/usr/bin/ivstools mr,
} | |
aircrack-ng/apparmor/usr.bin.kstats | #include <tunables/global>
/usr/bin/kstats {
#include <abstractions/base>
#include <abstractions/private-files-strict>
deny @{HOME}/.** rw,
@{HOME}/** r,
/usr/bin/kstats mr,
} | |
aircrack-ng/apparmor/usr.bin.packetforge-ng | #include <tunables/global>
/usr/bin/packetforge-ng {
#include <abstractions/base>
#include <abstractions/private-files-strict>
deny @{HOME}/.** rw,
@{HOME}/** r,
owner @{HOME}/** w,
/usr/bin/packetforge-ng mr,
} | |
aircrack-ng/apparmor/usr.sbin.airbase-ng | #include <tunables/global>
/usr/sbin/airbase-ng {
#include <abstractions/base>
#include <abstractions/nameservice>
#include <abstractions/private-files-strict>
capability net_admin,
capability net_raw,
capability setuid,
network inet dgram,
network packet raw,
deny @{HOME}/.** rw,
@{HOME}/** r,
... | |
aircrack-ng/apparmor/usr.sbin.aireplay-ng | #include <tunables/global>
/usr/sbin/aireplay-ng {
#include <abstractions/base>
#include <abstractions/private-files-strict>
capability net_admin,
capability net_raw,
capability setuid,
network packet raw,
deny @{HOME}/.** rw,
@{HOME}/** r,
owner @{HOME}/** w,
/bin/*sh rCx,
/usr/sbin/airepl... | |
aircrack-ng/apparmor/usr.sbin.airmon-ng | #include <tunables/global>
/usr/sbin/airmon-ng {
#include <abstractions/base>
#include <abstractions/bash>
#include <abstractions/private-files-strict>
/usr/sbin/airmon-ng rix,
/bin/cat rix,
/bin/dmesg rCx,
profile /bin/dmesg {
#include <abstractions/base>
/bin/dmesg mr,
}
/bin/*sh... | |
aircrack-ng/apparmor/usr.sbin.airodump-ng | #include <tunables/global>
/usr/sbin/airodump-ng {
#include <abstractions/base>
#include <abstractions/nameservice>
/usr/sbin/airodump-ng mr,
capability dac_override,
capability setuid,
capability net_raw,
capability net_admin,
capability sys_module,
network packet raw,
deny @{HOME}/.** rw,
... | |
aircrack-ng/apparmor/usr.sbin.airserv-ng | #include <tunables/global>
/usr/sbin/airserv-ng {
#include <abstractions/base>
capability net_admin,
capability net_bind_service,
capability net_raw,
network inet stream,
network packet raw,
/usr/sbin/airserv-ng mr,
/bin/ r,
/bin/*sh Cx,
/proc/*/net/psched r,
/tmp/ r,
/sbin/ r,
/sbin... | |
aircrack-ng/apparmor/usr.sbin.airtun-ng | #include <tunables/global>
/usr/sbin/airtun-ng {
#include <abstractions/base>
#include <abstractions/private-files-strict>
capability net_admin,
capability net_raw,
capability setuid,
network inet dgram,
network packet raw,
deny @{HOME}/.** rw,
@{HOME}/** r,
/bin/ r,
/bin/*sh Cx,
/d... | |
aircrack-ng/apparmor/usr.sbin.easside-ng | #include <tunables/global>
/usr/sbin/easside-ng {
#include <abstractions/base>
capability net_admin,
capability net_raw,
network inet dgram,
network packet raw,
deny @{HOME}/.** rw,
@{HOME}/**/prga.log w,
/bin/ r,
/bin/*sh Cx,
/dev/net/tun rw,
/usr/sbin/easside-ng mr,
/proc/*/net/psched... | |
aircrack-ng/apparmor/usr.sbin.tkiptun-ng | #include <tunables/global>
/usr/sbin/tkiptun-ng {
#include <abstractions/base>
#include <abstractions/private-files-strict>
capability net_admin,
capability net_raw,
capability setuid,
capability sys_module,
network packet raw,
deny @{HOME}/.** rw,
@{HOME}/** r,
/bin/ r,
/bin/*sh Cx,
/u... | |
aircrack-ng/apparmor/usr.sbin.wesside-ng | #include <tunables/global>
/usr/sbin/wesside-ng {
#include <abstractions/base>
#include <abstractions/private-files-strict>
capability dac_override,
capability net_admin,
capability net_raw,
network packet raw,
/bin/ r,
/bin/*sh Cx,
deny @{HOME}/.** rw,
owner @{HOME}/**/wep.cap rw,
/usr/sbin... | |
aircrack-ng/build/airpcap.dll.def | LIBRARY airpcap.dll
EXPORTS
AirpcapClose
AirpcapConvertChannelToFrequency
AirpcapConvertFrequencyToChannel
AirpcapFreeDeviceList
AirpcapGetDecryptionState
AirpcapGetDeviceCapabilities
AirpcapGetDeviceChannel
AirpcapGetDeviceChannelEx
AirpcapGetDeviceChannelLock
AirpcapGetDeviceKeys
AirpcapGetDeviceList
AirpcapGetDevice... | |
aircrack-ng/build/benchmark | #!/usr/bin/env bash
set -euf
TESTS=$(./aircrack-ng --simd-list)
BENCHMARKS=benchmark.csv
TOP=$(dirname "$0")/..
REV=$(cd "$TOP" && "./evalrev")
touch "$BENCHMARKS"
echo "revision,processor,simd,nbcpus,kps" | tee -a "$BENCHMARKS"
for T in $TESTS; do
NCPU=$(nproc)
while [ "$NCPU" -ge 1 ]; do
LOOPS=1
... | |
Shell Script | aircrack-ng/build/clang_format_all.sh | #!/bin/bash
#
# Adapted from:
# https://github.com/baldurk/renderdoc/raw/v1.x/util/clang_format_all.sh
#
CLANG_VERSION=(12 13 14 15)
# Locate the clang-format executable. We try:
# - the existing value of $CLANG_FORMAT
# - the first command line argument to the script
# - in order:
# clang-format-Maj
# ... |
Shell Script | aircrack-ng/build/cocci.sh | #!/bin/sh
echo docker run -it --rm -v "$(pwd)":/workspace --user root coccinelle:latest /bin/bash
echo cd /workspace
echo 'spatch --sp-file build/coccinelle/convert_u_int_form.cocci -I include -I lib --in-place --dir {include,lib,src,test}' |
Python | aircrack-ng/build/count-infer-bugs.py | #!/usr/bin/python3
# SPDX-License-Identifier: GPL-2.0-or-later
#
# Copyright (C) 2020-2021 Kevin R. Croft <krcroft@gmail.com>
# Copyright (C) 2020-2022 Joseph Benden <joe@benden.us>
"""
Count the number of issues found in an Infer report.
Usage: count-infer-bugs.py REPORT [MAX-ISSUES]
Where:
- REPORT is a file in... |
Python | aircrack-ng/build/count-pvs-bugs.py | #!/usr/bin/python3
# SPDX-License-Identifier: GPL-2.0-or-later
#
# Copyright (C) 2020-2021 Kevin R. Croft <krcroft@gmail.com>
"""
Count the number of issues found in an PVS-Studio report.
Usage: count-pvs-issues.py REPORT [MAX-ISSUES]
Where:
- REPORT is a file in CSV-format
- MAX-ISSUES is as a positive integer i... |
Shell Script | aircrack-ng/build/infer.sh | #!/bin/sh
set -euf
infer --report-blacklist-path-regex lib/radiotap \
--compilation-database compile_commands.json
[ -r infer-out/report.json ] || exit 2
exec ./build/count-infer-bugs.py infer-out/report.json 27 |
aircrack-ng/build/package-win32.ps1 | #######################################################################
#
# Copyright (C) 2018 Joseph Benden <joe@benden.us>
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 2 of... | |
Shell Script | aircrack-ng/build/pvs-studio.sh | #!/bin/sh
set -euf
pvs-studio-analyzer analyze -a "GA;OP;CS" -s .pvs-suppress -j8 -o PVS-Studio.log
plog-converter -a 'GA:1,2,3;64:1,2,3;OP:1,2,3' -d V1032,V1042,V597,V809,V802 -t errorfile PVS-Studio.log
plog-converter -a 'GA:1,2,3;64:1,2,3;OP:1,2,3' -d V1032,V1042,V597,V809,V802 -t csv -o pvs-report.csv PVS-Studio.... |
aircrack-ng/build/valgrind.supp | {
<insert_a_suppression_name_here>
Memcheck:Leak
match-leak-kinds: possible
fun:calloc
fun:allocate_dtv
fun:_dl_allocate_tls
fun:allocate_stack
fun:pthread_create@@GLIBC_2.2.5
fun:main
}
{
<insert_a_suppression_name_here>
Memcheck:Leak
match-leak-kinds: definite
fun:malloc
fun:... | |
aircrack-ng/build/coccinelle/convert_u_int_form.cocci | @@
typedef u_int64_t;
typedef uint64_t;
@@
-u_int64_t
+uint64_t
@@
typedef u_int32_t;
typedef uint32_t;
@@
-u_int32_t
+uint32_t
@@
typedef u_int16_t;
typedef uint16_t;
@@
-u_int16_t
+uint16_t
@@
typedef u_int8_t;
typedef uint8_t;
@@
-u_int8_t
+uint8_t | |
M4 Macro | aircrack-ng/build/m4/aircrack_ng_airpcap.m4 | dnl Aircrack-ng
dnl
dnl Copyright (C) 2017 Joseph Benden <joe@benden.us>
dnl
dnl Autotool support was written by: Joseph Benden <joe@benden.us>
dnl
dnl This program is free software; you can redistribute it and/or modify
dnl it under the terms of the GNU General Public License as published by
dnl the Free Software Foun... |
M4 Macro | aircrack-ng/build/m4/aircrack_ng_asan.m4 | dnl Aircrack-ng
dnl
dnl Copyright (C) 2017 Joseph Benden <joe@benden.us>
dnl
dnl Autotool support was written by: Joseph Benden <joe@benden.us>
dnl
dnl This program is free software; you can redistribute it and/or modify
dnl it under the terms of the GNU General Public License as published by
dnl the Free Software Foun... |
M4 Macro | aircrack-ng/build/m4/aircrack_ng_code_coverage.m4 | dnl Aircrack-ng
dnl
dnl Copyright (C) 2017 Joseph Benden <joe@benden.us>
dnl
dnl Autotool support was written by: Joseph Benden <joe@benden.us>
dnl
dnl This program is free software; you can redistribute it and/or modify
dnl it under the terms of the GNU General Public License as published by
dnl the Free Software Foun... |
M4 Macro | aircrack-ng/build/m4/aircrack_ng_compat.m4 | dnl Aircrack-ng
dnl
dnl Copyright (C) 2020-2022 Joseph Benden <joe@benden.us>
dnl
dnl Autotool support was written by: Joseph Benden <joe@benden.us>
dnl
dnl This program is free software; you can redistribute it and/or modify
dnl it under the terms of the GNU General Public License as published by
dnl the Free Software... |
M4 Macro | aircrack-ng/build/m4/aircrack_ng_compiler.m4 | dnl Aircrack-ng
dnl
dnl Copyright (C) 2017 Joseph Benden <joe@benden.us>
dnl
dnl Autotool support was written by: Joseph Benden <joe@benden.us>
dnl
dnl This program is free software; you can redistribute it and/or modify
dnl it under the terms of the GNU General Public License as published by
dnl the Free Software Foun... |
M4 Macro | aircrack-ng/build/m4/aircrack_ng_crypto.m4 | dnl Aircrack-ng
dnl
dnl Copyright (C) 2017,2022 Joseph Benden <joe@benden.us>
dnl
dnl Autotool support was written by: Joseph Benden <joe@benden.us>
dnl
dnl This program is free software; you can redistribute it and/or modify
dnl it under the terms of the GNU General Public License as published by
dnl the Free Software... |
M4 Macro | aircrack-ng/build/m4/aircrack_ng_duma.m4 | dnl Aircrack-ng
dnl
dnl Copyright (C) 2017 Joseph Benden <joe@benden.us>
dnl
dnl Autotool support was written by: Joseph Benden <joe@benden.us>
dnl
dnl This program is free software; you can redistribute it and/or modify
dnl it under the terms of the GNU General Public License as published by
dnl the Free Software Foun... |
M4 Macro | aircrack-ng/build/m4/aircrack_ng_ethtool.m4 | dnl Aircrack-ng
dnl
dnl Copyright (C) 2017 Joseph Benden <joe@benden.us>
dnl
dnl Autotool support was written by: Joseph Benden <joe@benden.us>
dnl
dnl This program is free software; you can redistribute it and/or modify
dnl it under the terms of the GNU General Public License as published by
dnl the Free Software Foun... |
M4 Macro | aircrack-ng/build/m4/aircrack_ng_expect.m4 | dnl Aircrack-ng
dnl
dnl Copyright (C) 2019 Joseph Benden <joe@benden.us>
dnl
dnl Autotool support was written by: Joseph Benden <joe@benden.us>
dnl
dnl This program is free software; you can redistribute it and/or modify
dnl it under the terms of the GNU General Public License as published by
dnl the Free Software Foun... |
M4 Macro | aircrack-ng/build/m4/aircrack_ng_experimental.m4 | dnl Aircrack-ng
dnl
dnl Copyright (C) 2017 Joseph Benden <joe@benden.us>
dnl
dnl Autotool support was written by: Joseph Benden <joe@benden.us>
dnl
dnl This program is free software; you can redistribute it and/or modify
dnl it under the terms of the GNU General Public License as published by
dnl the Free Software Foun... |
M4 Macro | aircrack-ng/build/m4/aircrack_ng_ext_scripts.m4 | dnl Aircrack-ng
dnl
dnl Copyright (C) 2017 Joseph Benden <joe@benden.us>
dnl
dnl Autotool support was written by: Joseph Benden <joe@benden.us>
dnl
dnl This program is free software; you can redistribute it and/or modify
dnl it under the terms of the GNU General Public License as published by
dnl the Free Software Foun... |
M4 Macro | aircrack-ng/build/m4/aircrack_ng_hwloc.m4 | dnl Aircrack-ng
dnl
dnl Copyright (C) 2018 Joseph Benden <joe@benden.us>
dnl
dnl Autotool support was written by: Joseph Benden <joe@benden.us>
dnl
dnl This program is free software; you can redistribute it and/or modify
dnl it under the terms of the GNU General Public License as published by
dnl the Free Software Foun... |
M4 Macro | aircrack-ng/build/m4/aircrack_ng_jemalloc.m4 | dnl Aircrack-ng
dnl
dnl Copyright (C) 2018 Joseph Benden <joe@benden.us>
dnl
dnl Autotool support was written by: Joseph Benden <joe@benden.us>
dnl
dnl This program is free software; you can redistribute it and/or modify
dnl it under the terms of the GNU General Public License as published by
dnl the Free Software Foun... |
M4 Macro | aircrack-ng/build/m4/aircrack_ng_largefile.m4 | dnl Aircrack-ng
dnl
dnl Copyright (C) 2017 Joseph Benden <joe@benden.us>
dnl
dnl Autotool support was written by: Joseph Benden <joe@benden.us>
dnl
dnl This program is free software; you can redistribute it and/or modify
dnl it under the terms of the GNU General Public License as published by
dnl the Free Software Foun... |
M4 Macro | aircrack-ng/build/m4/aircrack_ng_libnl.m4 | dnl Aircrack-ng
dnl
dnl Copyright (C) 2017 Joseph Benden <joe@benden.us>
dnl
dnl Autotool support was written by: Joseph Benden <joe@benden.us>
dnl
dnl This program is free software; you can redistribute it and/or modify
dnl it under the terms of the GNU General Public License as published by
dnl the Free Software Foun... |
M4 Macro | aircrack-ng/build/m4/aircrack_ng_mac.m4 | dnl Aircrack-ng
dnl
dnl Copyright (C) 2017 Joseph Benden <joe@benden.us>
dnl
dnl Autotool support was written by: Joseph Benden <joe@benden.us>
dnl
dnl This program is free software; you can redistribute it and/or modify
dnl it under the terms of the GNU General Public License as published by
dnl the Free Software Foun... |
M4 Macro | aircrack-ng/build/m4/aircrack_ng_os_detect.m4 | dnl Aircrack-ng
dnl
dnl Copyright (C) 2017 Joseph Benden <joe@benden.us>
dnl
dnl Autotool support was written by: Joseph Benden <joe@benden.us>
dnl
dnl This program is free software; you can redistribute it and/or modify
dnl it under the terms of the GNU General Public License as published by
dnl the Free Software Foun... |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.