Questions tagged as 'request'

0
answers

How do I have the same browser response using java / socket?

It is as follows, has anyone ever had to make a request http-post implementing socket in java? I need to make a request on the site http://spys.ru/en/ and get the response to mine some proxys. However, I can not bring the...
asked by 03.12.2014 / 00:06
2
answers

How do I prevent a form from being reloaded while refreshing the browser page? [duplicate]

I have a form with the following structure below: <?php //Lógica em php.... ?> <html> ..... <form method="post" action=""> ..... <input type="submit"> ..... By clicking on the submit button the page reloads, e...
asked by 10.09.2018 / 13:06
1
answer

Looping no request

How can I make a looping to bring request information from a list of coordinates of a csv and take the result to another csv? import requests import pandas as pd parametro = dict(latitude=-23.512294, longitude=-46.667259, status=1, lista=1, l...
asked by 05.12.2018 / 13:56
1
answer

How to restrict GET requests from other sites?

I'm trying to prevent other sites from copying my download links, but they're not conventional (they are not formatted at the end), so I can not block through Apache's mod_rewrite. So I decided to block GET requests from other sites, but the...
asked by 19.01.2018 / 04:08
2
answers

Problem in returning the answer via $ http.post ()

I'm trying to get only a value of HTTP return but I'm not getting it. .controller('myCtrl', function ($scope, $http) { $scope.sendPost = function() { var dataObj = { name : $scope.newName }; var res = $http.po...
asked by 16.02.2016 / 02:25
1
answer

help on request

I'm writing a subdomain scan and I made the following code (sorry to make you cry with it): import requests while True: url = raw_input("url: ") lista = ['blog', 'ftp', 'cpanel', 'intranet'] for list in lista: url2 = url.replace("www",...
asked by 18.06.2018 / 04:21