language
stringlengths
0
24
filename
stringlengths
9
214
code
stringlengths
99
9.93M
C
aircrack-ng/lib/ce-wep/uniqueiv.c
/* * IV uniqueness detection method. * * Copyright (C) 2004-2008 Stanislaw Pusep: * * 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 the License, or * (at your o...
C
aircrack-ng/lib/ce-wpa/crypto_engine.c
/* * Copyright (C) 2018-2022 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 the * License, or (at your option) any later version. * *...
C
aircrack-ng/lib/ce-wpa/memory.c
/* * Based on John the Ripper and modified to integrate with aircrack * * John the Ripper copyright and license. * * John the Ripper password cracker, * Copyright (c) 1996-2013 by Solar Designer. * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General P...
C
aircrack-ng/lib/ce-wpa/simd-intrinsics.c
/* * Based on John the Ripper and modified to integrate with aircrack * * John the Ripper copyright and license. * * John the Ripper password cracker, * Copyright (c) 1996-2013 by Solar Designer. * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General P...
C
aircrack-ng/lib/ce-wpa/wpapsk.c
/* * Based on John the Ripper and modified to integrate with aircrack * * John the Ripper copyright and license. * * John the Ripper password cracker, * Copyright (c) 1996-2013 by Solar Designer. * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General P...
C
aircrack-ng/lib/cowpatty/cowpatty.c
/* * coWPAtty hash DB file helper functions * * Copyright (C) 2018 Thomas d'Otreppe <tdotreppe@aircrack-ng.org> * * 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 ...
C
aircrack-ng/lib/crypto/aes-128-cbc-gcrypt.c
// clang-format off /** * \file aes-128-cbc-gcrypt.c * * \brief The Advanced Encryption Standard * * \author Joseph Benden <joe@benden.us> * \author Jouni Malinen <j@w1.fi> * * \license BSD-3-CLAUSE * * \ingroup * \cond ***********************************************************************...
C
aircrack-ng/lib/crypto/aes-128-cbc-generic.c
// clang-format off /** * \file aes-128-cbc-generic.c * * \brief AES 128-bit with CBC encryption routines * * \author Joseph Benden <joe@benden.us> * \author Jouni Malinen <j@w1.fi> * * \license BSD-3-CLAUSE * * \ingroup * \cond **************************************************************...
C
aircrack-ng/lib/crypto/aes-128-cbc-openssl.c
// clang-format off /** * \file aes-128-cbc-openssl.c * * \brief AES 128-bit with CBC encryption routines * * \author Joseph Benden <joe@benden.us> * \author Jouni Malinen <j@w1.fi> * * \license BSD-3-CLAUSE * * \ingroup * \cond **************************************************************...
C
aircrack-ng/lib/crypto/arcfour-gcrypt.c
// clang-format off /** * \file arcfour-gcrypt.c * * \brief The ARCFOUR stream cipher * * \warning ARC4 is considered a weak cipher and its use constitutes a * security risk. We recommend considering stronger ciphers instead. * * \author Joseph Benden <joe@benden.us> * \author Jouni...
C
aircrack-ng/lib/crypto/arcfour-generic.c
// clang-format off /** * \file arcfour-generic.c * * \brief The ARCFOUR stream cipher * * \warning ARC4 is considered a weak cipher and its use constitutes a * security risk. We recommend considering stronger ciphers instead. * * \author Joseph Benden <joe@benden.us> * \author The ...
C
aircrack-ng/lib/crypto/arcfour-openssl.c
// clang-format off /** * \file arcfour-openssl.c * * \brief The ARCFOUR stream cipher * * \warning ARC4 is considered a weak cipher and its use constitutes a * security risk. We recommend considering stronger ciphers instead. * * \author Joseph Benden <joe@benden.us> * \author Joun...
C
aircrack-ng/lib/crypto/crypto.c
/* * MD5, SHA-1, RC4 and AES implementations * * Copyright (C) 2001-2004 Christophe Devine * * 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 the License, or * ...
C
aircrack-ng/lib/crypto/mac-hmac-md5-generic.c
// clang-format off /** * \file mac-hmac-md5-generic.c * * \author Joseph Benden <joe@benden.us> * \author Jouni Malinen <j@wl.fi> * * \license BSD-3-CLAUSE * * \ingroup * \cond ****************************************************************************** * * Portions Copyright (c) 2003-2016,...
C
aircrack-ng/lib/crypto/mac-hmac-sha1-generic.c
// clang-format off /** * \file mac-hmac-sha1-generic.c * * \author Joseph Benden <joe@benden.us> * \author Jouni Malinen <j@wl.fi> * * \license BSD-3-CLAUSE * * \ingroup * \cond ****************************************************************************** * * Portions Copyright (c) 2003-2016...
C
aircrack-ng/lib/crypto/mac-hmac-sha256-generic.c
// clang-format off /** * \file mac-hmac-sha256-generic.c * * \author Joseph Benden <joe@benden.us> * \author Jouni Malinen <j@wl.fi> * * \license BSD-3-CLAUSE * * \ingroup * \cond ****************************************************************************** * * Portions Copyright (c) 2003-20...
C
aircrack-ng/lib/crypto/mac-omac1-gcrypt.c
// clang-format off /** * \file mac-omac1-gcrypt.c * * \brief One-Key CBC MAC (OMAC1) hash with AES. * * \author Joseph Benden <joe@benden.us> * \author Jouni Malinen <j@wl.fi> * * \license BSD-3-CLAUSE * * \ingroup * \cond *******************************************************************...
C
aircrack-ng/lib/crypto/mac-omac1-generic.c
// clang-format off /** * \file mac-omac1-generic.c * * \brief One-Key CBC MAC (OMAC1) hash with AES. * * \author Joseph Benden <joe@benden.us> * * \license BSD-3-CLAUSE * * \ingroup * \cond ****************************************************************************** * * SPDX-License-Ident...
C
aircrack-ng/lib/crypto/mac-omac1-openssl.c
// clang-format off /** * \file mac-omac1-openssl.c * * \brief One-Key CBC MAC (OMAC1) hash with AES. * * \author Joseph Benden <joe@benden.us> * \author Jouni Malinen <j@w1.fi> * * \license BSD-3-CLAUSE * * \ingroup * \cond ******************************************************************...
C
aircrack-ng/lib/crypto/md5-gcrypt.c
// clang-format off /** * \file md5-gcrypt.c * * \brief The MD5 message digest algorithm (hash function) * * \warning MD5 is considered a weak digest and its use constitutes a * security risk. We recommend considering stronger digests instead. * * \author Joseph Benden <joe@benden.us> ...
C
aircrack-ng/lib/crypto/md5-generic.c
// clang-format off /** * \file md5-generic.c * * \brief The MD5 message digest algorithm (hash function) * * \warning MD5 is considered a weak digest and its use constitutes a * security risk. We recommend considering stronger digests instead. * * \author Joseph Benden <joe@benden.us> ...
C
aircrack-ng/lib/crypto/md5-openssl.c
// clang-format off /** * \file md5-openssl.c * * \brief The MD5 message digest algorithm (hash function) * * This code uses the OpenSSL EVP high-level interfaces; which heap allocate! * See: https://github.com/openssl/openssl/issues/7219 * * \warning MD5 is considered a weak digest and its use const...
C
aircrack-ng/lib/crypto/md5.c
// clang-format off /** * \file md5.c * * \brief The MD5 message digest algorithm (hash function) * * \warning MD5 is considered a weak digest and its use constitutes a * security risk. We recommend considering stronger digests instead. * * \author Joseph Benden <joe@benden.us> * \auth...
C
aircrack-ng/lib/crypto/sha1-gcrypt.c
// clang-format off /** * \file sha1-gcrypt.c * * \brief The SHA-1 cryptographic hash function * * The Secure Hash Algorithm 1 (SHA-1) cryptographic hash function is defined * in <em>FIPS 180-4: Secure Hash Standard (SHS)</em>. * * \warning SHA-1 is considered a weak message digest and its use consti...
C
aircrack-ng/lib/crypto/sha1-generic.c
// clang-format off /** * \file sha1-gcrypt.c * * \brief The SHA-1 cryptographic hash function * * The Secure Hash Algorithm 1 (SHA-1) cryptographic hash function is defined * in <em>FIPS 180-4: Secure Hash Standard (SHS)</em>. * * \warning SHA-1 is considered a weak message digest and its use consti...
C
aircrack-ng/lib/crypto/sha1-git.c
#ifndef _SHA1_GIT /* * sha1-git.c * * This code is based on the GIT SHA1 Implementation. * * Copyright (C) 2009 Linus Torvalds <torvalds@linux-foundation.org> * Copyright (C) 2009 Nicolas Pitre <nico@cam.org> * Copyright (C) 2009 Junio C Hamano <gitster@pobox.com> * Copyright (C) 2009 Brandon Casey <drafnel@gma...
C
aircrack-ng/lib/crypto/sha1-openssl.c
// clang-format off /** * \file sha1-openssl.c * * \brief The SHA-1 cryptographic hash function * * The Secure Hash Algorithm 1 (SHA-1) cryptographic hash function is defined * in <em>FIPS 180-4: Secure Hash Standard (SHS)</em>. * * This code uses the OpenSSL EVP high-level interfaces; which heap alloc...
C
aircrack-ng/lib/crypto/sha1.c
// clang-format off /** * \file sha1.c * * \brief The SHA-1 cryptographic hash function * * The Secure Hash Algorithm 1 (SHA-1) cryptographic hash function is defined * in <em>FIPS 180-4: Secure Hash Standard (SHS)</em>. * * \warning SHA-1 is considered a weak message digest and its use constitutes ...
C
aircrack-ng/lib/crypto/sha256-gcrypt.c
// clang-format off /** * \file sha256-gcrypt.c * * \brief The SHA-256 cryptographic hash function and PRF (IEEE 802.11r) * * The Secure Hash Algorithm 2 (256-bit) cryptographic hash function is * defined in <em>FIPS 180-4: Secure Hash Standard (SHS)</em>. * * \ingroup * \cond ***********************...
C
aircrack-ng/lib/crypto/sha256-openssl.c
// clang-format off /** * \file sha256-openssl.c * * \brief The SHA-256 cryptographic hash function and PRF (IEEE 802.11r) * * The Secure Hash Algorithm 2 (256-bit) cryptographic hash function is * defined in <em>FIPS 180-4: Secure Hash Standard (SHS)</em>. * * This code uses the OpenSSL EVP high-level...
C
aircrack-ng/lib/crypto/sha256.c
// clang-format off /** * \file sha256.c * * \brief The SHA-2-256 cryptographic hash function and PRF (IEEE 802.11r) * * The Secure Hash Algorithm 2 (256-bit) cryptographic hash function is * defined in <em>FIPS 180-4: Secure Hash Standard (SHS)</em>. * * \ingroup * \cond ****************************...
Visual Studio Solution
aircrack-ng/lib/csharp/Example1/Example1.sln
Microsoft Visual Studio Solution File, Format Version 11.00 # Visual Studio 2010 Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Example1", "Example1\Example1.csproj", "{C4AE481A-A896-4830-9202-6221890AB43B}" EndProject Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "WirelessPanda", "..\WirelessPanda\Wireless...
aircrack-ng/lib/csharp/Example1/Example1/app.config
<?xml version="1.0"?> <configuration> <startup><supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.0"/></startup></configuration>
aircrack-ng/lib/csharp/Example1/Example1/Example1.csproj
<?xml version="1.0" encoding="utf-8"?> <Project ToolsVersion="4.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> <PropertyGroup> <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration> <Platform Condition=" '$(Platform)' == '' ">x86</Platform> <Pro...
C#
aircrack-ng/lib/csharp/Example1/Example1/Form1.cs
// License: BSD // Copyright (C) 2011-2018 Thomas d'Otreppe using System; using System.Windows.Forms; using WirelessPanda.Readers; namespace Example1 { public partial class Form1 : Form { public Form1() { InitializeComponent(); } /// <summary> /// Load file ...
C#
aircrack-ng/lib/csharp/Example1/Example1/Form1.Designer.cs
namespace Example1 { partial class Form1 { /// <summary> /// Required designer variable. /// </summary> private System.ComponentModel.IContainer components = null; /// <summary> /// Clean up any resources being used. /// </summary> /// <param name...
aircrack-ng/lib/csharp/Example1/Example1/Form1.resx
<?xml version="1.0" encoding="utf-8"?> <root> <!-- Microsoft ResX Schema Version 2.0 The primary goals of this format is to allow a simple XML format that is mostly human readable. The generation and parsing of the various data types are done through the TypeConverter classes as...
C#
aircrack-ng/lib/csharp/Example1/Example1/Program.cs
using System; using System.Windows.Forms; namespace Example1 { static class Program { /// <summary> /// The main entry point for the application. /// </summary> [STAThread] static void Main() { Application.EnableVisualStyles(); Application...
C#
aircrack-ng/lib/csharp/Example1/Example1/Properties/AssemblyInfo.cs
using System.Reflection; using System.Runtime.CompilerServices; using System.Runtime.InteropServices; // General Information about an assembly is controlled through the following // set of attributes. Change these attribute values to modify the information // associated with an assembly. [assembly: AssemblyTitle("Exa...
C#
aircrack-ng/lib/csharp/Example1/Example1/Properties/Resources.Designer.cs
//------------------------------------------------------------------------------ // <auto-generated> // This code was generated by a tool. // Runtime Version:4.0.30319.225 // // Changes to this file may cause incorrect behavior and will be lost if // the code is regenerated. // </auto-generated> //-----...
aircrack-ng/lib/csharp/Example1/Example1/Properties/Resources.resx
<?xml version="1.0" encoding="utf-8"?> <root> <!-- Microsoft ResX Schema Version 2.0 The primary goals of this format is to allow a simple XML format that is mostly human readable. The generation and parsing of the various data types are done through the TypeConverter classes as...
C#
aircrack-ng/lib/csharp/Example1/Example1/Properties/Settings.Designer.cs
//------------------------------------------------------------------------------ // <auto-generated> // This code was generated by a tool. // Runtime Version:4.0.30319.225 // // Changes to this file may cause incorrect behavior and will be lost if // the code is regenerated. // </auto-generated> //-----...
aircrack-ng/lib/csharp/Example1/Example1/Properties/Settings.settings
<?xml version='1.0' encoding='utf-8'?> <SettingsFile xmlns="http://schemas.microsoft.com/VisualStudio/2004/01/settings" CurrentProfile="(Default)"> <Profiles> <Profile Name="(Default)" /> </Profiles> <Settings /> </SettingsFile>
Visual Studio Solution
aircrack-ng/lib/csharp/MonoExample/NewStationNotify.sln
Microsoft Visual Studio Solution File, Format Version 11.00 # Visual Studio 2010 Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "NewStationNotify", "NewStationNotify\NewStationNotify.csproj", "{82B5448F-10AA-4BE0-9C20-DEA6441C9146}" EndProject Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "NDesk-dbus", "NDes...
C#
aircrack-ng/lib/csharp/MonoExample/NDesk-dbus/Address.cs
// Copyright 2006 Alp Toker <alp@atoker.com> // This software is made available under the MIT License // See COPYING for details using System; using System.Text; using System.Collections.Generic; namespace NDesk.DBus { public class BadAddressException : Exception { public BadAddressException (string reason) : bas...
C#
aircrack-ng/lib/csharp/MonoExample/NDesk-dbus/AssemblyInfo.cs
// Copyright 2006 Alp Toker <alp@atoker.com> // This software is made available under the MIT License // See COPYING for details using System.Reflection; using System.Runtime.CompilerServices; [assembly: AssemblyFileVersion("0.6.0")] [assembly: AssemblyInformationalVersion("0.6.0")] [assembly: AssemblyVersion("0.6.0"...
C#
aircrack-ng/lib/csharp/MonoExample/NDesk-dbus/Authentication.cs
// Copyright 2006 Alp Toker <alp@atoker.com> // This software is made available under the MIT License // See COPYING for details using System; using System.Collections.Generic; using System.IO; using System.Text; using System.Globalization; namespace NDesk.DBus.Authentication { enum ClientState { WaitingForData, ...
C#
aircrack-ng/lib/csharp/MonoExample/NDesk-dbus/Bus.cs
// Copyright 2006 Alp Toker <alp@atoker.com> // This software is made available under the MIT License // See COPYING for details using System; using System.Collections.Generic; using org.freedesktop.DBus; namespace NDesk.DBus { public sealed class Bus : Connection { static Bus systemBus = null; public static Bu...
C#
aircrack-ng/lib/csharp/MonoExample/NDesk-dbus/BusObject.cs
// Copyright 2006 Alp Toker <alp@atoker.com> // This software is made available under the MIT License // See COPYING for details using System; using System.Reflection; using System.Reflection.Emit; using System.Collections.Generic; namespace NDesk.DBus { class BusObject { protected Connection conn; string bus_n...
C#
aircrack-ng/lib/csharp/MonoExample/NDesk-dbus/Connection.cs
// Copyright 2006 Alp Toker <alp@atoker.com> // This software is made available under the MIT License // See COPYING for details using System; using System.Collections.Generic; using System.IO; using System.Threading; using System.Reflection; namespace NDesk.DBus { using Authentication; using Transports; public p...
C#
aircrack-ng/lib/csharp/MonoExample/NDesk-dbus/DBus.cs
// Copyright 2006 Alp Toker <alp@atoker.com> // This software is made available under the MIT License // See COPYING for details using System; using System.Collections.Generic; using NDesk.DBus; namespace org.freedesktop.DBus { [Flags] public enum NameFlag : uint { None = 0, AllowReplacement = 0x1, ReplaceEx...
C#
aircrack-ng/lib/csharp/MonoExample/NDesk-dbus/DProxy.cs
// Copyright 2006 Alp Toker <alp@atoker.com> // This software is made available under the MIT License // See COPYING for details using System; using System.Reflection; using System.Runtime.Remoting.Proxies; using System.Runtime.Remoting.Messaging; namespace NDesk.DBus { //marked internal because this is really an im...
C#
aircrack-ng/lib/csharp/MonoExample/NDesk-dbus/ExportObject.cs
// Copyright 2006 Alp Toker <alp@atoker.com> // This software is made available under the MIT License // See COPYING for details using System; using System.Reflection; using System.Reflection.Emit; using org.freedesktop.DBus; namespace NDesk.DBus { //TODO: perhaps ExportObject should not derive from BusObject inte...
C#
aircrack-ng/lib/csharp/MonoExample/NDesk-dbus/Introspection.cs
// Copyright 2006 Alp Toker <alp@atoker.com> // This software is made available under the MIT License // See COPYING for details using System; using System.Collections.Generic; using System.IO; using System.Xml; using System.Text; using System.Reflection; namespace NDesk.DBus { //TODO: complete this class class Int...
C#
aircrack-ng/lib/csharp/MonoExample/NDesk-dbus/Mapper.cs
// Copyright 2006 Alp Toker <alp@atoker.com> // This software is made available under the MIT License // See COPYING for details using System; using System.Collections.Generic; using System.Reflection; namespace NDesk.DBus { static class Mapper { //TODO: move these Get*Name helpers somewhere more appropriate pu...
C#
aircrack-ng/lib/csharp/MonoExample/NDesk-dbus/MatchRule.cs
// Copyright 2007 Alp Toker <alp@atoker.com> // This software is made available under the MIT License // See COPYING for details using System; using System.Text; using System.Collections.Generic; namespace NDesk.DBus { //delegate void MessageHandler (Message msg); class MatchRule { public MessageType? MessageTy...
C#
aircrack-ng/lib/csharp/MonoExample/NDesk-dbus/Message.cs
// Copyright 2006 Alp Toker <alp@atoker.com> // This software is made available under the MIT License // See COPYING for details using System; using System.Collections.Generic; using System.IO; namespace NDesk.DBus { class Message { public Message () { Header.Endianness = Connection.NativeEndianness; Head...
C#
aircrack-ng/lib/csharp/MonoExample/NDesk-dbus/MessageFilter.cs
// Copyright 2006 Alp Toker <alp@atoker.com> // This software is made available under the MIT License // See COPYING for details using System; namespace NDesk.DBus { class MessageFilter { //this should probably be made to use HeaderField or similar //this class is not generalized yet public static string Mes...
C#
aircrack-ng/lib/csharp/MonoExample/NDesk-dbus/MessageReader.cs
// Copyright 2006 Alp Toker <alp@atoker.com> // This software is made available under the MIT License // See COPYING for details using System; using System.Text; using System.Collections.Generic; using System.IO; using System.Reflection; namespace NDesk.DBus { class MessageReader { protected EndianFlag endianness...
C#
aircrack-ng/lib/csharp/MonoExample/NDesk-dbus/MessageWriter.cs
// Copyright 2006 Alp Toker <alp@atoker.com> // This software is made available under the MIT License // See COPYING for details using System; using System.Text; using System.Collections.Generic; using System.IO; using System.Reflection; namespace NDesk.DBus { class MessageWriter { protected EndianFlag endianness...
aircrack-ng/lib/csharp/MonoExample/NDesk-dbus/NDesk-dbus.csproj
<?xml version="1.0" encoding="utf-8"?> <Project DefaultTargets="Build" ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> <PropertyGroup> <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration> <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform> <...
C#
aircrack-ng/lib/csharp/MonoExample/NDesk-dbus/Notifications.cs
// Copyright 2006 Alp Toker <alp@atoker.com> // This software is made available under the MIT License // See COPYING for details using System; using System.Collections.Generic; using NDesk.DBus; using org.freedesktop.DBus; // Hand-written interfaces for bootstrapping namespace org.freedesktop { public struct Serve...
C#
aircrack-ng/lib/csharp/MonoExample/NDesk-dbus/PendingCall.cs
// Copyright 2007 Alp Toker <alp@atoker.com> // This software is made available under the MIT License // See COPYING for details using System; using System.Threading; namespace NDesk.DBus { class PendingCall { Connection conn; Message reply = null; object lockObj = new object (); public PendingCall (Connec...
C#
aircrack-ng/lib/csharp/MonoExample/NDesk-dbus/Protocol.cs
// Copyright 2006 Alp Toker <alp@atoker.com> // This software is made available under the MIT License // See COPYING for details using System; using System.Collections.Generic; namespace NDesk.DBus { //yyyyuua{yv} struct Header { public EndianFlag Endianness; public MessageType MessageType; public HeaderFlag...
C#
aircrack-ng/lib/csharp/MonoExample/NDesk-dbus/Signature.cs
// Copyright 2006 Alp Toker <alp@atoker.com> // This software is made available under the MIT License // See COPYING for details using System; using System.Text; using System.Collections.Generic; //TODO: Reflection should be done at a higher level than this class using System.Reflection; namespace NDesk.DBus { //ma...
C#
aircrack-ng/lib/csharp/MonoExample/NDesk-dbus/SocketTransport.cs
// Copyright 2006 Alp Toker <alp@atoker.com> // This software is made available under the MIT License // See COPYING for details using System; using System.IO; using System.Net; using System.Net.Sockets; namespace NDesk.DBus.Transports { class SocketTransport : Transport { protected Socket socket; public overr...
C#
aircrack-ng/lib/csharp/MonoExample/NDesk-dbus/Transport.cs
// Copyright 2006 Alp Toker <alp@atoker.com> // This software is made available under the MIT License // See COPYING for details using System; using System.IO; namespace NDesk.DBus.Transports { abstract class Transport { public static Transport Create (AddressEntry entry) { switch (entry.Method) { case "...
C#
aircrack-ng/lib/csharp/MonoExample/NDesk-dbus/TypeImplementer.cs
// Copyright 2007 Alp Toker <alp@atoker.com> // This software is made available under the MIT License // See COPYING for details using System; using System.Reflection; using System.Reflection.Emit; using System.Collections.Generic; namespace NDesk.DBus { static class TypeImplementer { static AssemblyBuilder asmB;...
C#
aircrack-ng/lib/csharp/MonoExample/NDesk-dbus/UnixNativeTransport.cs
// Copyright 2006 Alp Toker <alp@atoker.com> // This software is made available under the MIT License // See COPYING for details //We send BSD-style credentials on all platforms //Doesn't seem to break Linux (but is redundant there) //This may turn out to be a bad idea #define HAVE_CMSGCRED using System; using System...
C#
aircrack-ng/lib/csharp/MonoExample/NDesk-dbus/UnixTransport.cs
// Copyright 2006 Alp Toker <alp@atoker.com> // This software is made available under the MIT License // See COPYING for details using System; using System.IO; using Mono.Unix; namespace NDesk.DBus.Transports { abstract class UnixTransport : Transport { public override void Open (AddressEntry entry) { string...
C#
aircrack-ng/lib/csharp/MonoExample/NDesk-dbus/Wrapper.cs
// Copyright 2006 Alp Toker <alp@atoker.com> // This software is made available under the MIT License // See COPYING for details using System; using System.Collections.Generic; using System.IO; namespace NDesk.DBus { //TODO: complete and use these wrapper classes //not sure exactly what I'm thinking but there seems...
C#
aircrack-ng/lib/csharp/MonoExample/NewStationNotify/AssemblyInfo.cs
using System.Reflection; using System.Runtime.CompilerServices; // Information about this assembly is defined by the following attributes. // Change them to the values specific to your project. [assembly: AssemblyTitle("NewStationNotify")] [assembly: AssemblyDescription("")] [assembly: AssemblyConfiguration("")] [as...
C#
aircrack-ng/lib/csharp/MonoExample/NewStationNotify/Main.cs
// License: BSD/LGPL // Copyright (C) 2011-2018 Thomas d'Otreppe // using System.Threading; using WirelessPanda.Readers; using WirelessPanda; using System.Collections; using System.Collections.Generic; using System; namespace NewStationNotify { class MainClass { public static void Main (string[] args) { Cons...
aircrack-ng/lib/csharp/MonoExample/NewStationNotify/NewStationNotify.csproj
<?xml version="1.0" encoding="utf-8"?> <Project DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003" ToolsVersion="4.0"> <PropertyGroup> <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration> <Platform Condition=" '$(Platform)' == '' ">x86</Platform> <Pro...
C#
aircrack-ng/lib/csharp/MonoExample/NewStationNotify/Notification.cs
// License: BSD // Copyright (C) 2011-2018 Thomas d'Otreppe using System; using System.Collections.Generic; using NDesk.DBus; using org.freedesktop; namespace NewStationNotify { public class Notification { public Notification () { } /// <summary> /// Shows a notification on the screen. This has been te...
C#
aircrack-ng/lib/csharp/WirelessPanda/AccessPoint.cs
// License: BSD/LGPL // Copyright (C) 2011-2018 Thomas d'Otreppe using System; using System.Collections.Generic; namespace WirelessPanda { public class AccessPoint : WirelessDevice, IEquatable<AccessPoint> { #region Properties /// <summary> /// Max Rate /// </summary> pu...
C#
aircrack-ng/lib/csharp/WirelessPanda/Coordinates.cs
// License: BSD/LGPL // Copyright (C) 2011-2018 Thomas d'Otreppe using System; using System.Collections; using System.Text; namespace WirelessPanda { public class Coordinates { #region Dictionary stuff private Hashtable _dictionary = new Hashtable(); private void setDictValue(string el...
C#
aircrack-ng/lib/csharp/WirelessPanda/Station.cs
// License: BSD/LGPL // Copyright (C) 2011-2018 Thomas d'Otreppe using System; using System.Collections.Generic; using System.Text; namespace WirelessPanda { public class Station : WirelessDevice, IEquatable<Station> { private AccessPoint _ap = null; /// <summary> /// Access p...
C#
aircrack-ng/lib/csharp/WirelessPanda/WirelessDevice.cs
// License: BSD/LGPL // Copyright (C) 2011-2018 Thomas d'Otreppe using System; using System.Collections; namespace WirelessPanda { public abstract class WirelessDevice { #region Dictionary stuff /// <summary> /// Keep track of the last position for the column /// </summary> ...
aircrack-ng/lib/csharp/WirelessPanda/WirelessPanda.csproj
<?xml version="1.0" encoding="utf-8"?> <Project ToolsVersion="4.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> <PropertyGroup> <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration> <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform> <...
aircrack-ng/lib/csharp/WirelessPanda/WirelessPanda.Mono.csproj
<?xml version="1.0" encoding="utf-8"?> <Project ToolsVersion="4.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> <PropertyGroup> <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration> <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform> <...
C#
aircrack-ng/lib/csharp/WirelessPanda/Properties/AssemblyInfo.cs
using System.Reflection; using System.Runtime.CompilerServices; using System.Runtime.InteropServices; // General Information about an assembly is controlled through the following // set of attributes. Change these attribute values to modify the information // associated with an assembly. [assembly: AssemblyTitle("Wir...
C#
aircrack-ng/lib/csharp/WirelessPanda/Readers/csvReader.cs
// License: BSD/LGPL // Copyright (C) 2011-2018 Thomas d'Otreppe using System; using System.Collections.Generic; namespace WirelessPanda.Readers { public class CsvReader : Reader { /// <summary> /// Date format (Same format for 0.x and 1.x) /// </summary> protected override stri...
C#
aircrack-ng/lib/csharp/WirelessPanda/Readers/kismetCsvReader.cs
// License: BSD/LGPL // Copyright (C) 2011-2018 Thomas d'Otreppe using System; namespace WirelessPanda.Readers { public class KismetCsvReader : Reader { /// <summary> /// Date format (Same format for Kismet CSV and NetXML) /// </summary> protected override string DATE_FORMAT ...
C#
aircrack-ng/lib/csharp/WirelessPanda/Readers/NetXMLReader.cs
using System; namespace WirelessPanda.Readers { // See http://msdn.microsoft.com/en-us/library/cc189056(v=vs.95).aspx public class NetXMLReader : Reader { /// <summary> /// Date format (Same format for Kismet CSV and NetXML) /// </summary> protected override string DATE_FORM...
C#
aircrack-ng/lib/csharp/WirelessPanda/Readers/Reader.cs
// License: BSD/LGPL // Copyright (C) 2011-2018 Thomas d'Otreppe using System; using System.Collections; using System.Collections.Generic; using System.Data; using System.IO; namespace WirelessPanda.Readers { public class Reader { public const string ACCESSPOINTS_DATATABLE = "Access Points"; pu...
C#
aircrack-ng/lib/csharp/WirelessPanda/Readers/UniversalReader.cs
// License: BSD/LGPL // Copyright (C) 2011-2018 Thomas d'Otreppe using System; using System.Data; namespace WirelessPanda.Readers { public class UniversalReader : Reader { /// <summary> /// Reader /// </summary> private Reader _reader = null; /// <summary> /// F...
C
aircrack-ng/lib/libac/adt/avl_tree.c
/** * collectd - src/utils_avltree.c * Copyright (C) 2006,2007 Florian octo Forster * * Permission is hereby granted, free of charge, to any person obtaining a * copy of this software and associated documentation files (the "Software"), * to deal in the Software without restriction, including without limitation ...
C
aircrack-ng/lib/libac/adt/circular_buffer.c
/** * Copyright (C) 2018 Joseph Benden <joe@benden.us> * * Permission is hereby granted, free of charge, to any person obtaining a * copy of this software and associated documentation files (the "Software"), * to deal in the Software without restriction, including without limitation * the rights to use, copy, mod...
C
aircrack-ng/lib/libac/adt/circular_queue.c
#ifdef HAVE_CONFIG_H #include "config.h" #endif #include <stdlib.h> #include <stdint.h> #include <stdio.h> #include <stddef.h> #include <stdbool.h> #include <string.h> #include <assert.h> #include <pthread.h> #include "aircrack-ng/defs.h" #include "aircrack-ng/adt/circular_buffer.h" #include "aircrack-ng/adt/circula...
C
aircrack-ng/lib/libac/cpu/cpuset_hwloc.c
/* * 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 the * License, or (at your option) any later version. * * This...
C
aircrack-ng/lib/libac/cpu/cpuset_pthread.c
/* * 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 the * License, or (at your option) any later version. * * This...
C
aircrack-ng/lib/libac/cpu/simd_cpuid.c
/* * CPU/SIMD identification routines by Len White <lwhite@nrw.ca> * * 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 the License, or * (at your option) any later versio...
C
aircrack-ng/lib/libac/cpu/trampoline_arm.c
/* * 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 the License, or * (at your option) any later version. * *...
C
aircrack-ng/lib/libac/cpu/trampoline_ppc.c
/* * 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 the License, or * (at your option) any later version. * *...
C
aircrack-ng/lib/libac/cpu/trampoline_stubs.c
/* * 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 the License, or * (at your option) any later version. * *...
C
aircrack-ng/lib/libac/cpu/trampoline_x86.c
/* * 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 the License, or * (at your option) any later version. * *...
C
aircrack-ng/lib/libac/support/common.c
/* * Common functions for all aircrack-ng tools * * Copyright (C) 2006-2018 Thomas d'Otreppe <tdotreppe@aircrack-ng.org> * * 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 vers...
C
aircrack-ng/lib/libac/support/communications.c
/* * Copyright (C) 2006-2018 Thomas d'Otreppe <tdotreppe@aircrack-ng.org> * Copyright (C) 2006-2009 Martin Beck <martin.beck2@gmx.de> * Copyright (C) 2018-2019 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...
C
aircrack-ng/lib/libac/support/crypto_engine_loader.c
/* * 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 the * License, or (at your option) any later version. * * This...