Questions tagged [client]
In a client-server model, the server serves services to the client.
12 questions with no upvoted or accepted answers
3
votes
0
answers
426
views
Does RenegotiateOnce in Go's crypto/tls package protect against triple handshake?
Looking into how to do client cert authentication from the Go HTTP client, I found out I needed renegotiation from the client side and I came across issue 5742 for Go on GitHub, which is the issue ...
3
votes
1
answer
1k
views
Can clients visit my site, and spam socket.emit(something); to my server, or is there some security behind socket.io?
I'm using Socket.IO and the client side looks like this.
<script src="/socket.io/socket.io.js"></script>
<script>
var socket = io();
socket.emit("sendData", "hello!");
</...
2
votes
0
answers
118
views
Distributed Shared Secret for RNG that only Distributor knows?
For one of my projects I want to create a way to sync up all participants' RNG with a seed where each participant does not know the seed of the RNG but also in a way that minimizes the number of times ...
1
vote
0
answers
362
views
Bettercap TLS handshake phase information
I wanted to know if bettercap has a feature that allows to view TLS handshake phase information (as Wireshark does), for example the "Client Hello" ?
1
vote
0
answers
361
views
Verifying the authenticity of data coming to a server
I'm a newbie when it comes to information security. So pardon me if the solution can be found at page 12 of any introductory text.
I have an express server and two android apps(for clients and admin)....
1
vote
0
answers
155
views
How to authorize users for rest service
me and my friend are doing a project for a company. It involves getting some information from the database and display it on a smartglass device (epson, sony, ...). Now we want to build a RESTful ...
0
votes
0
answers
147
views
Can I setup and enforce additional WiFi connection (and password) requirements on managed laptops using Windows or MacOS?
Can I setup and enforce additional WiFi connection (and password) requirements on managed laptops using Windows or MacOS?
Such as:
blocking (or entirely hiding) the option to connect to open networks
...
0
votes
0
answers
206
views
Client Identification using Self Signed Certificates
Taking the concept from the Gemini protocol that allows clients to identify themselves using their own self-signed certificate - is this a valid concept that could be used in other protocols and what ...
0
votes
0
answers
150
views
Certificates between services in a single machine
I'd like to know if it's possible to protect communications between a heavy client on a machine and a remote server accessible by a web interface on this machine using certificates. Or the only way is ...
0
votes
0
answers
201
views
Addressing SSL/TLS vulnerabilities in IoT Device client side implementation
I understand SSL/TLS is the most commonly data transmission protocol for a secured communication. I need to implement the same in one of the IoT device (ARM® Cortex®-M4 Core at 80 MHz). This will be ...
0
votes
0
answers
297
views
How can a server make sure client application sending data is not a modified copy?
I actually wouldn't care about a perfect copy (my program is free)being used, I just can't allow someone to use a copy to communicate with my server.
I came accross this subject where the OP seemed ...
0
votes
1
answer
146
views
Server->Client distribution security
Apologies in advance if this is the wrong SE site for this topic, though it should be a fairly appropriate match.
I am building a video game where one of the features available to users will be ...