About 126 results found. (Query 0.06500 seconds)
This is the only way to identify your data, without this information we won't be able to comply with your request. Contact this email address for all deletion requests: . Close
This is PurpleI2P Certification Authority Our CA certificate here: link b32 Our CA revocation list: link b32 Some info: link (russian) You can request signing by sending your CSR to [email protected] . Required information: Your eepsite address. It must be registered and published on reg.i2p , stats.i2p or identiguy.i2p Your eepsite b32 address Your contact email/irc/etc (email prefered for response with certification status and sending signed certificate back to you) Your CSR file Requests...
and then i thought " hmm, i wonder if i could write my own http request???? " so i pull up a terminal, (relearn how netcat works), and then type this: printf " GET / HTTP/1.0\r\n\r\n " | nc x.x.x.x 80 and it just WORKS...
These builds are not currently automated and are made when I decide to. You can request a fresh build by finding me on IRC2P when I am around. The version with JavaDocs may not be updated as frequently, currently I only plan to make them on release versions.
General data Across all of my Web-services following data is being collected: date of access, IP-address, User-Agent, referer URL, request URL. Use of JavaScript JS is used on a main website at a guestbook page to refresh CAPTCHA; at mindflow page to filter posts by categories.
Non-compliance with these rules may result to a ban (temporary or not) and/or termination of your account(s). privacy policy we collect the following data: information that is submitted during the creation of an account files that are uploaded in the file upload service logs from the software that runs on our server, for troubleshooting purposes the data is being kept in our server. we do not share data with any third party. You can request your data to be removed. If you want to delete...
Knowing this, we would rewrite the configuration file as: frontend portstripev2 mode tcp bind 195.154.33.73:443 name frontend-ssl tcp-request inspect-delay 2s tcp-request content accept if { req.ssl_hello_type 1 } use_backend openvpn_rsa if !{ req.ssl_hello_type 1 } { req.len 88 } use_backend openvpn_ecc if !
Content-Alternative Content-Base Content-Description Content-Disposition Content-Duration Content-Features Content-ID Content-Language Content-Location Content-MD5 Content-Transfer-Encoding Content-Type Date Distribution Face Expires Followup-To From In-Reply-To Keywords Lines Message-ID MIME-Version Newsgroups Organization References Reply-To Sender Subject Summary Supersedes User-Agent X-Face X-Newsreader X-No-Archive Contacts: [email protected] ( PGP key , PGP key on MIT keyserver ) [email protected] (...
. #1 run setup. it will force you to enter an email address. enter anything that looks like an email address, like “ [email protected] ” #2 now it will require license name and key. request one from their webserver. name doesnt matter, “ prtgtrial ” is fine. this will contact their server and activate the (trial) license. #3 choose custom (not express); paths are your choice; but skip auto-discovery #4 stop Services, eg via powershell: “ Get-Service PRTG* | Stop-Service ” #5 copy directory structure...
Total 4 (delta 3), reused 0 (delta 0), pack-reused 0 remote: remote: Create a new pull request for 'optimist:main': remote: http://gdatura24gtdy23lxd7ht3xzx6mi7mdlkabpvuefhrjn4t5jduviw5ad.onion/optimist/opsec-blogposts/compare/main...optimist:main remote: remote: .
If anyone has any experience in Spanish, the account created for Lucas Murad will be given to maintain that section of the website. Just register on the forums and request it. Lucas: If you want to maintain the Spanish part of the site, you've got all the information you need in the PM I sent you a while ago.
В общем, спасибо, интересное решение можно сделать. 16.12.2025 17:00:37 MSK #167 Точный Буйвол: >>166 Проебался с цитатой: > Add X-I2P headers so the webserver knows where the request came from И типа всё, что за заголовки больше не сказано. Но не отрицаю что я могу быть слепошарым и где-то все эти заголовки перечислены хотя бы. 16.12.2025 16:42:47 MSK #166 Точный Буйвол: Глянул доку по Java i2p https://geti2p.net/en/docs/api/i2ptunnel Там тоже...
Зовнішні запити Згодом, в консолі були помічені зовнішні запити до кешуючих серверів: Cross-Origin Request Blocked: The Same Origin Policy disallows reading the remote resource at https://cdn.jsdelivr.net/gh/s9e/[email protected]/loader.min.js.
php $username = 'your_username'; $password = 'your_password'; $api_url = 'http://sho.rt/yourls-api.php'; // Init the CURL session $ch = curl_init(); curl_setopt($ch, CURLOPT_URL, $api_url); curl_setopt($ch, CURLOPT_HEADER, 0); // No header in the result curl_setopt($ch, CURLOPT_RETURNTRANSFER, true); // Return, do not echo result curl_setopt($ch, CURLOPT_POST, 1); // This is a POST request curl_setopt($ch, CURLOPT_POSTFIELDS, array( // Data to POST ...
There was not much work for a young actress or dancer in South Africa, so she soon traveled to Europe and the United States, where she got a job at the Joffrey Ballet in New York. She was also able to work as a photo model. However, an injured knee put a halt to her dancing career. In 1994, her mother bought her a one-way ticket to Los Angeles, and Charlize started visiting all of the agents on Hollywood Boulevard, but without any luck.
Class The class of a problem report can be one of the following: sw-bug A general software problem ( `sw' stands for "software"). doc-bug A problem with the manual pages or other documentation. change-request A request for a change from existing behavior that is not a bug ("It's nice, but it would be better if ..."). support A question or request for technical support.
Resumable Downloads Built for I2P with chunked storage and HTTP Range request support. Metadata Stripping GPS, EXIF, and other metadata are automatically removed from images, videos, audio, and PDFs.
. # log desthashes log_format i2p '$remote_addr $http_x_i2p_desthash - $remote_user [$time_local] ' '"$request" $status $body_bytes_sent ' '"$http_referer" "$http_user_agent"'; # disable server id server_tokens off; # i2p does gzip itself gzip off; server { listen 80; server_name foo.i2p; root /opt/srnd/data/plugins/overchan/out/; client_max_body_size 10M; access_log /var/log/nginx/access.log i2p; if ( $http_x_forwarded_server )...
When you are writing APIs most of the time you are going to have some input in form of a request body, then you do some operations with it and finally you CRUD it into a database. The APIs route is handled by a library and the database is handled by another library.