Questions tagged [insecure-connection]

63 questions
18
votes
2 answers

How to create Insecure RFCOMM Socket in Android?

I am looking at way of connecting over rfcomm socket insecurely. I was able to find the way mentioned below Method m = device.getClass().getMethod("createInsecureRfcommSocket", new Class[] {int.class}); tmp = (BluetoothSocket) m.invoke(device,…
sunil
  • 9,541
  • 18
  • 66
  • 88
13
votes
5 answers

"Service discovery failed" from Android Bluetooth Insecure Rfcomm

Does anyone know how to create an insecure RFCOMM connection between 2 Android devices at API level 2.3.3 while using an arbitrarily declared service name? (not random or changing service name, just a service name that I define myself) Details I am…
Matt
  • 1,996
  • 5
  • 18
  • 24
9
votes
5 answers

Can't connect to Github's website in Chrome but it works when I use Firefox

https://i.imgur.com/qKyu744.jpg This started happening just a few days ago. I can access the site on the same computer in Firefox. Not sure why it is telling me that the site is insecure, but that must be related. I tried ipconfig /flushdns,…
Apav
  • 103
  • 1
  • 1
  • 4
8
votes
1 answer

kotlin library that can do httpS connection without certificate verification (like curl --insecure)

I need to crawl internal company site that has expired/self-signed certificate. Noone is ever going to configure valid certificate for that host, so I have to use insecure connection. curl has --insecure flag for that purpose, Scala finagle library…
ludenus
  • 1,161
  • 17
  • 30
7
votes
2 answers

Enabling HTTPS support on Tumblr blogs

I am trying to work out if there is a way to link to a Tumblr blog over HTTPS/SSL. When I link to my blog with HTTPS I can't access it, but it works under HTTP. I came across this post on TechCrunch from Feb 2014, which suggests that there is a…
crmpicco
  • 16,605
  • 26
  • 134
  • 210
6
votes
1 answer

Android Bluetooth multiple connection issue?

I am new in Android, I am working on a project where I have to connect My device with all devices which can be found in by startDiscovery() call Using Bluetooth. I have gone through with bluetooth chat sample, but issue is that for make connection…
Abdul Wahab
  • 819
  • 1
  • 7
  • 18
5
votes
0 answers

Docker: use insecure registry without modifying daemon.json

I'm currently on a development environment, so there aren't certificates everywhere, or they're not compliant (using myrepo.dev.corp.fr where the certificate is *.corp.fr). I'm trying to docker push on an insecure docker repository, but I'm getting…
Asoub
  • 2,273
  • 1
  • 20
  • 33
5
votes
1 answer

curl with `-k` and without `-k`

When I am opening a url using curl without -k, my request is passing and I am able to see the expected result. $ curl -vvv https://MYHOSTNAME/wex/archive.info -A SUKU$RANDOM * Trying 10.38.202.192... * Connected to MYHOSTNAME (10.38.202.192) port…
Suku
  • 3,820
  • 1
  • 21
  • 23
4
votes
3 answers

How to make insecure HTTPS call in Node.js

in Curl, I can do -k to perform insecure SSL connections and transfers. However, in node.js, I check the doc for HTTPS. I can't find any options that can do it. The reason I need this is that I need to call a remote server. I have the cert &…
murvinlai
  • 48,919
  • 52
  • 129
  • 177
4
votes
2 answers

android bluetooth rfcomm connect too slow

I'm creating insecure rfcomm connection from my HTC One X to SENA bluetooth ESD110 Serial module with this code: BluetoothDevice device = mBluetoothAdapter.getRemoteDevice(addr); BluetoothSocket socket = null; try{ socket =…
itai
  • 302
  • 5
  • 15
4
votes
1 answer

Android - connecting to multiple bluetooth devices without pairing

I have a bunch of devices that are non-discoverable but I know the MAC addresses for them. At present I can connect to multiple devices using this in my ConnectThread: Method m = device.getClass().getMethod("createRfcommSocket",new Class[] {…
7wonders
  • 1,639
  • 1
  • 17
  • 34
3
votes
1 answer

how to make curl accept secure cookies overt http connection

I am using curl to connect to an http server which sends back a secure flagged cookie, and I found out that curl doesn't handle such cookies (secure cookies received over http connection), in other words : even using -c cookieFile switch, such…
younes zeboudj
  • 856
  • 12
  • 22
3
votes
2 answers

InsecureRequestWarning: Unverified HTTPS request is being made in Robot Framework.

Hi I'm Using Robot Framework. I'm trying to send a Get Request but I get the following warning C:\Python27\lib\site-packages\urllib3-1.21.1-py2.7.egg\urllib3\connectionpool.py:852: InsecureRequestWarning: Unverified HTTPS request is being made.…
Narek Hakobyan
  • 107
  • 2
  • 4
  • 13
3
votes
0 answers

Is it possible to establish secure connection in android web view pre lollipop? if so how?

Hi am using PayFort payment gateway for transaction through android web view. Its working fine on lollipop. But pre lollipop it throws "Could not establish secure connection" as the patches for web view are not available on pre lollipop any more. Is…
Nas
  • 2,158
  • 1
  • 21
  • 38
3
votes
0 answers

Android bluetooth createInsecureRfcommSocketToServiceRecord on reconnect

When I try to connect first time, and server side device is in range - everything OK! But, if device is unreachable (service discovery failed) my BT save that SDP record and don't want to connect anymore. I really think it's pretty stupid to cache…
Alexey Kurilov
  • 438
  • 4
  • 10
1
2 3 4 5