Jump to content

_.:=iTake=:._

Superior Administrator
  • Posts

    1,855
  • Joined

  • Last visited

  • Days Won

    333
  • Donations

    20.00 USD 

Everything posted by _.:=iTake=:._

  1. Ariana Grande - Positions Billy Fury - The Remasters Carcass - Despicable Eels - Earth to Dora Elvis Costello - Hey Clockface Faithless - All Blessed Frank Carter & The Rattlesnakes - Blossom Ian Dury - Hit Me! The Best Of Matt Berninger - Serpentine Prison Roger Waters - Us + Them Sweet - The Ultimate Collection The Damned - The Rockfield Files UB40 - Essential VA - 60s Pop Pearls VA - Dance Party 2020 VA - Fatboy Slim - Back to Mine VA - The Sing-A-Long Lip-Sync Album
  2. Autechre - Sign" Cordovas - Destiny Hotel" Katie Melua - Album No. 8" Melody Gardot - Sunset In The Blue" Nik Kershaw - Oxymoron" Nothing But Thieves - Moral Panic" Russell Watson - 20" Sam Smith - Love Goes" Tears for Fears - The Seeds Of Love" The Slow Readers Club - 91 Days in Isolation" This Is The Kit - Off Off On" Tom_Petty-Wildflowers and All The Rest (Deluxe Edition)" VA - Disco Best 100" VA - Haynes In The Car Pop Anthems Sing-A-Long (2020)" VA - Top Of The Clubs by Kontor Records" VA - Vintage 70's Soul MP3" Ward Thomas - Invitation"
  3. Download it here [Hidden Content] or [Hidden Content] or [Hidden Content]
  4. Nice work, m8. Always appreciate people who give back to the community.. Those who don't give back and stop seeding after you hit , you know yourselves, shame on you. Seeding is the only way to keep all torrents alive, not only mp3 weekly but all other torrents. We have lost a good number of uploaders because they feel they're only wasting their time by spending time on their craft, uploading it, seeding it and all some idiots can do is hit and run. Also lost a good number of content that you can hardly find anywhere that people find expensive or unable to afford. Lets help the uploaders who dedicate their time to bring us good content to the site, that includes movies, tv series, games, music, sofwares, adult videos, books, etc... by seeding their torrents.
  5. Setting Up Viscosity The interface provided by the Mac and Windows versions of Viscosity are intentionally very similar. As such, we will focus our guide on the Mac version, pointing out any differences with the Windows version as they arise. If you do not have Viscosity already running, start Viscosity now. In the Mac version you will see the Viscosity icon appear in the menu bar. In the Windows version you will see the Viscosity icon appear in the system tray. Click the Viscosity icon in the menu bar (Windows: system tray) and select 'Preferences...': This shows you the list of available VPN connections. We assume you have already created a connection to your OpenVPN server. If you haven't set created a Viscosity connection to your OpenVPN server, please check out our OpenVPN server guides. Select your previously configured connection and click "Edit": Configuring the Connection You will now need to modify the connection parameters as outlined below: In the General tab, replace the server address with the IP address of your Obfsproxy server. This will be unchanged if your Obfsproxy server is running on the same machine as your OpenVPN server. Update the port to the Obfsproxy port set in the configuration above (12345 in our example). The protocol must be set to TCP. 4. Click the Transport tab. 5. Set the obfuscation method to the obfuscation method selected in the Obfsproxy server configuration. 6. You cannot use a proxy when using obfuscation, so make sure the "Connect using proxy" option is unchecked. 7. If you are using obfs4 or scramblesuit, paste the password key in the "Key" field. 8. Click the Save button. Connecting and Using Your VPN Connection You are now ready to connect. Click on the Viscosity icon in the menu bar (Windows: system tray) and select 'Connect DemoConnection'. That's it, you should see a notification that you're now connected! To check that the VPN is up and running, you can use the Viscosity details window. Click the Viscosity menu bar (Windows: system tray) icon and select 'Details...'. This will bring up the details window. This window will show you the traffic passing through the VPN connection. Source: SparkLabs
  6. Scramblesuit Server Setup Scramblesuit requires a different configuration using the older obfsproxy program. To get started, create an empty directory for obfsproxy with: [iCODE]sudo mkdir -p /var/lib/tor/pt_state/scramblesuit[/iCODE] Next, we need to generate a password to use. To do this, type the following into terminal: [iCODE]python -c 'import os,base64; print base64.b32encode(os.urandom(20))'[/iCODE] This will output a line of numbers and letters, make a copy of this, this is your password key for scramblesuit which we will need below and for Viscosity later. Next, create a service configuration and open it with nano: [iCODE]sudo nano /etc/systemd/system/obfsproxy.service[/iCODE] And paste in the following: [unit] Description=Obfsproxy Server [service] ExecStart=/usr/bin/obfsproxy --log-min-severity=info --data-dir=/var/lib/tor/pt_state scramblesuit --password=YOURPASSWORD --dest=127.0.0.1:443 server 0.0.0.0:12345 [install] WantedBy=multi-user.target Make the following changes as necessary: YOURPASSWORD - Replace this with the password key we generated above. 127.0.0.1:443 - This is the address to your OpenVPN server. This is valid if your OpenVPN server is running on the same system as obfsproxy and is listening on port 443, otherwise change this as required. 0.0.0.0:12345 - This where obfsproxy is listening for connections. You can change 12345 to a different port as required. Save the service configuration and exit nano. We can then start the service and enable it to start automatically after reboot with: [iCODE]sudo systemctl start obfsproxy.service[/iCODE] [iCODE]sudo systemctl enable obfsproxy.service[/iCODE] You can check it started succesfully with: [iCODE]sudo systemctl status obfsproxy.service[/iCODE] Firewall Setup Finally we need to allow external connections to Obfsproxy. Assuming you setup ufw (Uncomplicated Firewall) following our Ubuntu server guide, simply enter the following: [iCODE]sudo ufw allow 12345[/iCODE] [iCODE]sudo ufw reload[/iCODE] If you changed your port from 12345 which is shown in this guide, adjust the number in the first command accordingly.
  7. Obfs4proxy Server Configuration To get started setting up obfs4proxy, for if you want to use the obfs2, obfs3 or obfs4 protocol, we first setup the config. Create a directory for the obfs4proxy configuration with the following: [iCODE]sudo mkdir -p /var/lib/tor/pt_state/obfs4[/iCODE] Next, create the config: [iCODE]sudo nano /var/lib/tor/pt_state/obfs4/obfs4.config[/iCODE] And paste in the following: TOR_PT_MANAGED_TRANSPORT_VER=1 TOR_PT_STATE_LOCATION=/var/lib/tor/pt_state/obfs4 TOR_PT_SERVER_TRANSPORTS=obfs4 TOR_PT_SERVER_BINDADDR=obfs4-0.0.0.0:12345 TOR_PT_ORPORT=127.0.0.1:443 You can make the following changes as necessary: TOR_PT_SERVER_TRANSPORTS - This is the protocol to use, change this to obfs2 or obfs3 if you wish to use a different protocol. TOR_PT_SERVER_BINDADDR - Again, change obfs4 to obfs2 or obfs3 if you wish to use a different protocol. 12345 is the port obfs4proxy is listening on, you may also change this as you wish. TOR_PT_ORPORT - This is the address of your OpenVPN server. If you are running the obfs4proxy server on the same system as your OpenVPN server using port 443, nothing needs to change, otherwise change this address and port as needed. Save the configuration and exit nano. Next we need to setup a service for obfs4proxy. To do this, create a new file and open it in the nano editor with the following: [iCODE]sudo nano /etc/systemd/system/obfs4proxy.service[/iCODE] And paste in the following, save and close nano: [unit] Description=obfs4proxy Server [service] EnvironmentFile=/var/lib/tor/pt_state/obfs4/obfs4.config ExecStart=/usr/bin/obfs4proxy -enableLogging true -logLevelStr INFO [install] WantedBy=multi-user.target Next, start the service and enable it to automatically start after rebooting: [iCODE]sudo systemctl start obfs4proxy.service[/iCODE] [iCODE]sudo systemctl enable obfs4proxy.service[/iCODE] You can check it started succesfully with: [iCODE]sudo systemctl status obfs4proxy.service[/iCODE] Finally, if you are using the obfs4 protocol, when you start the server for the first time a password key will be generated which you will need to paste into Viscosity. Print it out with: [iCODE]sudo cat /var/lib/tor/pt_state/obfs4/obfs4_bridgeline.txt | grep 'Bridge obfs4' | sed -e 's/^.*cert=\(.*\) .*$/\1/'[/iCODE]
  8. Obfuscation can be used to prevent your VPN connection being detected and/or blocked. Some administrators (such as wireless hot spots in cafes) choose to block VPN traffic on their network. By obfuscating your VPN connection, you can securely connect to your remote network resources or browse the internet privately while connected to such restricted networks. Network administrators can use tools like Deep Packet Inspection (DPI) to classify and restrict traffic by protocol, such as HTTP, SSL, VPN, etc. Viscosity uses Obfsproxy to obfuscate its VPN traffic. Obfsproxy transforms the VPN traffic coming from your computer to make it look like whatever you choose, so that it is more difficult to restrict via DPI methods. There are a number of different methods Obfsproxy can use to disguise your traffic, including obfs2 which adds an encryption wrapper around your VPN traffic to stop it looking like any protocol in particular. Ubuntu Setup Preparation For this guide, we assume: You have already installed the latest version of Ubuntu (18.04 at time of writing) You have root access to this installation of Ubuntu via terminal or ssh You have already setup a TCP (not UDP) OpenVPN server You already have a copy of Viscosity installed on your client device The OpenVPN server can be on this installation of Ubuntu, or another machine, it doesn't matter. If you haven't already setup an OpenVPN server, please check out our setup guides. Make sure to set the OpenVPN server protocol to TCP, not UDP. We also assume that this installation of Ubuntu is a fresh install, possibly with an OpenVPN server installed as well. If you don't have a copy of Viscosity already installed on your client machine, then please check out this setup guide for installing Viscosity (Mac | Windows). Getting Started This guide will walk you through setting up one of the following obfuscation protocols: obfs2 obfs3 scramblesuit obfs4 To begin, log in to the command line as root with sudo su -. Once logged in, we need to ensure that Ubuntu's repository list is up to date by typing the following: [iCODE]sudo apt-get update[/iCODE] For obfs2, obfs3 and obfs4 we will use obfs4proxy. To install obfs4proxy, run the following: [iCODE]sudo apt install -y obfs4proxy[/iCODE] For scramblesuit, you will need obfsproxy instead, install this with the following and then skip to the scramblesuit section further down: [iCODE]sudo apt install -y obfsproxy[/iCODE] A final note before continuing, this guide uses port 12345 as an example, for the majority of cases, this works just fine. However, you might wish to change this to port 443 or 80 if you are going to use obfsproxy in places that block all other ports. Please keep in mind, this may interfere with your servers ability to host websites or connect to external sources itself, so if you choose these ports, make sure you test everything!
  9. hopefully someone can test and confirm if this is working..
  10. Wow, It's one year again, Happy Birthday to you, Our lovely MissKitti. We @ GloTorrents, love and cherish you a lot for all the great things you have done and still doing for this Community. Enjoy this day to the fullest and have fun, Happy Birthday @MissKitti
  11. Thanks for your contributions, it's well appreciated.. hope there can be more people like you !
  12. Download it here [Hidden Content] or [Hidden Content] or [Hidden Content]
  13. Download [Hidden Content] or [Hidden Content] or [Hidden Content]
  14. Hopefully someone will fill it soon!
  15. Here are two versions, one is 1080p and 720p magnet:?xt=urn:btih:044232C138CCBB6D9296D1238B58BB50DDB47C80&dn=Bloodbath.at.the.House.of.Death.1984.1080p.REMASTERED.%5BMPC%5D&tr=udp%3A%2F%2Ftracker.coppersurfer.tk%3A6969%2Fannounce&tr=udp%3A%2F%2F9.rarbg.me%3A2850%2Fannounce&tr=udp%3A%2F%2F9.rarbg.to%3A2920%2Fannounce&tr=udp%3A%2F%2Ftracker.opentrackr.org%3A1337&tr=udp%3A%2F%2Ftracker.leechers-paradise.org%3A6969%2Fannounce or magnet:?xt=urn:btih:2F840C4BD6E5BB9A9D951C97DB55B2BBB9789D4E&dn=Bloodbath.at.the.House.of.Death.1984.720p.REMASTERED.%5BMPC%5D&tr=udp%3A%2F%2Ftracker.coppersurfer.tk%3A6969%2Fannounce&tr=udp%3A%2F%2F9.rarbg.me%3A2850%2Fannounce&tr=udp%3A%2F%2F9.rarbg.to%3A2920%2Fannounce&tr=udp%3A%2F%2Ftracker.opentrackr.org%3A1337&tr=udp%3A%2F%2Ftracker.leechers-paradise.org%3A6969%2Fannounce
  16. I will upload it for you, once it's ready I'll send you a link to download..
  17. Beabadoobee - Fake It Flowers Bruce Springsteen - Letter To You Daniel O'Donnell - Daniel Foals - Collected Reworks Future Islands - As Long As You Are Gorillaz - Song Machine Episode 6 Jenny Sturgeon - The Living Mountain Joe Bonamassa - Royal Tea Kevin Morby - Sundowner Lana Del Rey - Violet Bent Backwards Over The Grass Robert Plant - Digging Deep - Subterranea Suede - Beautiful Ones The Best of Suede 1992-2018 The Official UK Top 40 Singles Chart 13-11-20 The Struts - Strange Days VA - American R&B Classics VA - Kidz Bop Kids - KIDZ BOP 2021 VA - Vintage 50's Classics VA - Vintage Reggae 80's Cafe
  18. Bon Jovi - 2020 Bryson Tiller - A N N I V E R S A R Y Corey Taylor - CMFT D-Block Europe - The Blue Print – Us vs Them Dire Straits - The Studio Albums 1978-1991 Headie One - EDNA LANY - mama's boy Róisín Murphy - Róisín Machine Savage - SAVAGE MODE II Stone Foundation - Is Love Enough Sufjan Stevens - The Ascension The Official UK Top 40 Singles Chart 06-11-20 The Vamps - Cherry Blossom VA - Blue Note Re-imagined VA - Ibiza Bounce Bombs VA - Magic 90s The Songs You Love VA - NOW 100 Hits Christmas 2020 Working Men's Club - Working Men's Club
  19. LOL, it said you left a comment on it on Monday, [Hidden Content]
  20. Download it here [Hidden Content] or [Hidden Content] or [Hidden Content]
  21. Please try as much as possible to follow all the steps outlined above ! Have fun uploading!
  22. Uploading to GloTorrents Once your application has been accepted, you can now go to the main website and upload. Uploading Requirements: You must have an account on main site : [Hidden Content] or [Hidden Content] You should be logged in to your account! You must be an Elite User, Uploader or above to upload to our site. Follow this link to upload your new torrent! [Hidden Content]/upload or [Hidden Content] An illustration is shown below, please try and fill the form to upload your torrent to our site
  23. Final Step Final Step is to upload your torrent file to Glotorrents. New users will have to Apply For Uploader Status! Follow the link below to Apply Now [Hidden Content] Fill the form following the guidelines provided below! Question 1: What's your username on GloTorrents? You must enter the username of your account on the main website.! Question 2: Content you want to Upload: Choose only one, we advice you to chose the category you intend to upload your content to. Choosing Movies, TV, Anime, Softwares, Games or More than one will likely get your application denied. If you chose to upload Music during Application, please upload music only since Staff will be checking your uploads from time to time! Question 3: Do you have accounts on any torrent site we can crosscheck? Examples of sites we can cross-check are: 1337x, TPB, ETTV, TGX, ANT If you Chose Yes then remember to answer the next question. Question 4: Please provide a profile link to at least two other torrent sites you upload to. Egx. of profile links are [Hidden Content] [Hidden Content] [Hidden Content] Question 5: Please tell us why your application should be approved. Explain briefly why we should accept your Application, this can convince us if you fail to answer some of the above questions properly. You have only once chance to convince Staff you're capable of uploading and intend to upload clean torrents only. Question 6: I have read the rules and agree to follow them at all times. We are pirates but we still need rules to follow to avoid chaos and mess within our torrent community! Be sure to have read all of our Site and Forum Rules and Regulations, Failure to do so might lead to warnings and a permanent ban for going against our site rules.
×
×
  • Create New...
×
GloTorrents Community Forum
Home
Activities
Sign In
Search
More
×