All Projects → dunglas → DunglasTorControlBundle

dunglas / DunglasTorControlBundle

Licence: MIT license
Integration of PHP TorControl library in Symfony

Programming Languages

PHP
23972 projects - #3 most used programming language

Projects that are alternatives of or similar to DunglasTorControlBundle

onionshare
Securely and anonymously share files, host websites, and chat with friends using the Tor network
Stars: ✭ 5,222 (+40069.23%)
Mutual labels:  tor
ParamConverterBundle
This bundle provides additional param converters for Symfony.
Stars: ✭ 16 (+23.08%)
Mutual labels:  symfony-bundle
vDroid
official re-designed Android wallet 📳
Stars: ✭ 14 (+7.69%)
Mutual labels:  tor
BitChan
BitChan is a decentralized anonymous imageboard inspired by BitBoard and built on top of BitMessage with Tor and GnuPG.
Stars: ✭ 44 (+238.46%)
Mutual labels:  tor
symfony-debug-toolbar-git
Get the latest Git commit information into Symfony debug toolbar
Stars: ✭ 30 (+130.77%)
Mutual labels:  symfony-bundle
LiipMultiplexBundle
[DEPRECATED] Symfony2 controller that allows calling multiple URL's in one request as well as JSON-ifying any controller
Stars: ✭ 12 (-7.69%)
Mutual labels:  symfony-bundle
SonataAdminSearchBundle
[Abandoned] Implement Search Engine (ElasticSearch) inside Sonata Admin
Stars: ✭ 19 (+46.15%)
Mutual labels:  symfony-bundle
TORhunter
Designed to scan and exploit vulnerabilities within Tor hidden services. TORhunter allows most tools to work as normal while resolving .onion
Stars: ✭ 47 (+261.54%)
Mutual labels:  tor
dystopia
Anonymity on the Internet by Transparent way.
Stars: ✭ 97 (+646.15%)
Mutual labels:  tor
LolautruchePaylineBundle
Symfony integration for Payline payment system
Stars: ✭ 15 (+15.38%)
Mutual labels:  symfony-bundle
CyberSecurity-Box
Firewall-System based on OpenWRT or Pi-Hole with UnBound, TOR, optional Privoxy, opt. ntopng and opt. Configuration of the AVM FRITZ!Box with Presets for Security and Port-List. Please visit:
Stars: ✭ 20 (+53.85%)
Mutual labels:  tor
ExpandedCollectionBundle
Symfony bundle for render entity collections as a selectable expanded list.
Stars: ✭ 13 (+0%)
Mutual labels:  symfony-bundle
block-bundle
Extends the SonataBlockBundle to integrate with PHPCR ODM
Stars: ✭ 20 (+53.85%)
Mutual labels:  symfony-bundle
ormesh
[UNMAINTAINED: Try https://github.com/cmars/oniongrok instead] onion-routed mesh
Stars: ✭ 65 (+400%)
Mutual labels:  tor
peeling-onions
A repository to store Deep Web (onion domain) crawler, scraper, and NLP tools for Tor network.
Stars: ✭ 18 (+38.46%)
Mutual labels:  tor
tor-in-termux
proxy for telegram and twitter
Stars: ✭ 27 (+107.69%)
Mutual labels:  tor
LexikCronFileGeneratorBundle
This symfony bundle provides service for generate cron file
Stars: ✭ 20 (+53.85%)
Mutual labels:  symfony-bundle
AutoFormBundle
Automate Symfony form building
Stars: ✭ 68 (+423.08%)
Mutual labels:  symfony-bundle
docusign-bundle
Symfony bundle to create electronic signatures with DocuSign
Stars: ✭ 27 (+107.69%)
Mutual labels:  symfony-bundle
eav-bundle
A Symfony bundle for basic EAV management
Stars: ✭ 19 (+46.15%)
Mutual labels:  symfony-bundle

DunglasTorControlBundle, TorControl Symfony integration

Use the PHP TorControl library with Symfony. TorControl allows to control a Tor server.

Build Status SensioLabsInsight StyleCI

Installation

Use Composer to install this bundle:

composer require dunglas/torcontrol-bundle

Add the bundle to the application kernel:

$bundles = array(
    // ...
    new Dunglas\TorControlBundle\DunglasTorControlBundle(),
);

Configuration

# app/config/config.yml
dunglas_tor_control:
    # Hostname or IP of the Tor server (default to localhost)
    hostname: ~
    # Port (default to 9051)
    port: ~
    # "null" for no authentication, "password" for password auth, "cookie" for cookie file auth (default to autodetect)
    authmethod: "null"
    # Password to use if the password auth method is used (no default)
    password: ~
    # Cookie file is this auth method is used (no default)
    cookiefile: ~
    # Connection timeout (default to php.ini setting)
    timeout: ~

Usage

// Get an instance of the PHP TorControl library as a service
$tc = $this->get('torcontrol');

Credits

This bundle has been written by Kévin Dunglas.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].