├── .gitignore ├── LICENSE ├── README.md ├── composer.json ├── examples ├── exampleBots │ └── friendBot.php ├── exampleFunctional.php ├── registerTool.php └── verifyPhone.php └── src ├── Casper-API-PHP ├── CasperAPI.php ├── CasperAgent.php └── CasperException.php ├── Discover └── .gitkeep ├── authData └── .gitkeep ├── ca_bundle.crt ├── cache └── .gitkeep ├── fonts └── Helvetica.otf ├── func.php ├── phpseclib ├── Crypt │ ├── AES.php │ ├── Base.php │ ├── Blowfish.php │ ├── DES.php │ ├── Hash.php │ ├── RC2.php │ ├── RC4.php │ ├── RSA.php │ ├── Random.php │ ├── Rijndael.php │ ├── TripleDES.php │ └── Twofish.php ├── File │ ├── ANSI.php │ ├── ASN1.php │ └── X509.php ├── Math │ ├── BigInteger.php │ └── GMP.php ├── Net │ ├── SCP.php │ ├── SFTP.php │ ├── SFTP │ │ └── Stream.php │ ├── SSH1.php │ └── SSH2.php ├── System │ ├── SSH │ │ └── Agent.php │ └── SSH_Agent.php └── openssl.cnf ├── snapchat.php ├── snapchat_agent.php ├── snapchat_cache.php ├── snaps └── .gitkeep └── stories └── .gitkeep /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgp25/SC-API/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgp25/SC-API/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgp25/SC-API/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgp25/SC-API/HEAD/composer.json -------------------------------------------------------------------------------- /examples/exampleBots/friendBot.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgp25/SC-API/HEAD/examples/exampleBots/friendBot.php -------------------------------------------------------------------------------- /examples/exampleFunctional.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgp25/SC-API/HEAD/examples/exampleFunctional.php -------------------------------------------------------------------------------- /examples/registerTool.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgp25/SC-API/HEAD/examples/registerTool.php -------------------------------------------------------------------------------- /examples/verifyPhone.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgp25/SC-API/HEAD/examples/verifyPhone.php -------------------------------------------------------------------------------- /src/Casper-API-PHP/CasperAPI.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgp25/SC-API/HEAD/src/Casper-API-PHP/CasperAPI.php -------------------------------------------------------------------------------- /src/Casper-API-PHP/CasperAgent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgp25/SC-API/HEAD/src/Casper-API-PHP/CasperAgent.php -------------------------------------------------------------------------------- /src/Casper-API-PHP/CasperException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgp25/SC-API/HEAD/src/Casper-API-PHP/CasperException.php -------------------------------------------------------------------------------- /src/Discover/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/authData/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/ca_bundle.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgp25/SC-API/HEAD/src/ca_bundle.crt -------------------------------------------------------------------------------- /src/cache/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/fonts/Helvetica.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgp25/SC-API/HEAD/src/fonts/Helvetica.otf -------------------------------------------------------------------------------- /src/func.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgp25/SC-API/HEAD/src/func.php -------------------------------------------------------------------------------- /src/phpseclib/Crypt/AES.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgp25/SC-API/HEAD/src/phpseclib/Crypt/AES.php -------------------------------------------------------------------------------- /src/phpseclib/Crypt/Base.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgp25/SC-API/HEAD/src/phpseclib/Crypt/Base.php -------------------------------------------------------------------------------- /src/phpseclib/Crypt/Blowfish.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgp25/SC-API/HEAD/src/phpseclib/Crypt/Blowfish.php -------------------------------------------------------------------------------- /src/phpseclib/Crypt/DES.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgp25/SC-API/HEAD/src/phpseclib/Crypt/DES.php -------------------------------------------------------------------------------- /src/phpseclib/Crypt/Hash.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgp25/SC-API/HEAD/src/phpseclib/Crypt/Hash.php -------------------------------------------------------------------------------- /src/phpseclib/Crypt/RC2.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgp25/SC-API/HEAD/src/phpseclib/Crypt/RC2.php -------------------------------------------------------------------------------- /src/phpseclib/Crypt/RC4.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgp25/SC-API/HEAD/src/phpseclib/Crypt/RC4.php -------------------------------------------------------------------------------- /src/phpseclib/Crypt/RSA.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgp25/SC-API/HEAD/src/phpseclib/Crypt/RSA.php -------------------------------------------------------------------------------- /src/phpseclib/Crypt/Random.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgp25/SC-API/HEAD/src/phpseclib/Crypt/Random.php -------------------------------------------------------------------------------- /src/phpseclib/Crypt/Rijndael.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgp25/SC-API/HEAD/src/phpseclib/Crypt/Rijndael.php -------------------------------------------------------------------------------- /src/phpseclib/Crypt/TripleDES.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgp25/SC-API/HEAD/src/phpseclib/Crypt/TripleDES.php -------------------------------------------------------------------------------- /src/phpseclib/Crypt/Twofish.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgp25/SC-API/HEAD/src/phpseclib/Crypt/Twofish.php -------------------------------------------------------------------------------- /src/phpseclib/File/ANSI.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgp25/SC-API/HEAD/src/phpseclib/File/ANSI.php -------------------------------------------------------------------------------- /src/phpseclib/File/ASN1.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgp25/SC-API/HEAD/src/phpseclib/File/ASN1.php -------------------------------------------------------------------------------- /src/phpseclib/File/X509.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgp25/SC-API/HEAD/src/phpseclib/File/X509.php -------------------------------------------------------------------------------- /src/phpseclib/Math/BigInteger.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgp25/SC-API/HEAD/src/phpseclib/Math/BigInteger.php -------------------------------------------------------------------------------- /src/phpseclib/Math/GMP.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgp25/SC-API/HEAD/src/phpseclib/Math/GMP.php -------------------------------------------------------------------------------- /src/phpseclib/Net/SCP.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgp25/SC-API/HEAD/src/phpseclib/Net/SCP.php -------------------------------------------------------------------------------- /src/phpseclib/Net/SFTP.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgp25/SC-API/HEAD/src/phpseclib/Net/SFTP.php -------------------------------------------------------------------------------- /src/phpseclib/Net/SFTP/Stream.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgp25/SC-API/HEAD/src/phpseclib/Net/SFTP/Stream.php -------------------------------------------------------------------------------- /src/phpseclib/Net/SSH1.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgp25/SC-API/HEAD/src/phpseclib/Net/SSH1.php -------------------------------------------------------------------------------- /src/phpseclib/Net/SSH2.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgp25/SC-API/HEAD/src/phpseclib/Net/SSH2.php -------------------------------------------------------------------------------- /src/phpseclib/System/SSH/Agent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgp25/SC-API/HEAD/src/phpseclib/System/SSH/Agent.php -------------------------------------------------------------------------------- /src/phpseclib/System/SSH_Agent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgp25/SC-API/HEAD/src/phpseclib/System/SSH_Agent.php -------------------------------------------------------------------------------- /src/phpseclib/openssl.cnf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgp25/SC-API/HEAD/src/phpseclib/openssl.cnf -------------------------------------------------------------------------------- /src/snapchat.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgp25/SC-API/HEAD/src/snapchat.php -------------------------------------------------------------------------------- /src/snapchat_agent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgp25/SC-API/HEAD/src/snapchat_agent.php -------------------------------------------------------------------------------- /src/snapchat_cache.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgp25/SC-API/HEAD/src/snapchat_cache.php -------------------------------------------------------------------------------- /src/snaps/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/stories/.gitkeep: -------------------------------------------------------------------------------- 1 | --------------------------------------------------------------------------------