Let's assume we have a computer that sends packets to the internet using dial-up connection, and we have access to the analog data on the phone line(we have access to the phone line), how can we make a proper sniff for the data that is being transmitted through?
-
A good answer related to dial-up lines spying is the one from Tom Leek from the thread [What is more secure: ISDN, Cable Modem, DSL, T1, etc…?](https://security.stackexchange.com/questions/9008/what-is-more-secure-isdn-cable-modem-dsl-t1-etc/9016?s=1|0.2748#9016) – WhiteWinterWolf May 22 '15 at 15:02
1 Answers
If it is a PSTN line a simple tape recorder attached to the lines could do the trick. For ISDN I suspect you need a DAC but its also easy, as long as you have physical access to the line.
Any connection using a Telephone line (digital or analogue) is easy to understand for anyone that knows the encoding schema. To realy protect it you should use the same techniques as being used between computers. There we ue an encription layer in between the physical line and the interpretation layer (a.k.a. between the telephone receiver and the physical telephone line) The current default implementation for this is the TLS Protocol, this encrypts everything but the name of the intended 'destination' (so phone number and name)
Bottom Line, if you want to protect your physical line use a TLS connection.
- 8,336
- 1
- 27
- 43
-
Could this way lead to a "data sniffing", and to get the plain http requests, for example? – Mohammad Teimori Pabandi May 22 '15 at 14:32
-
-
And one more question! Is the DAC enough to take care of it? – Mohammad Teimori Pabandi May 22 '15 at 14:34
-
the Digital Analogue Converter is to record a Digital Signal on a Analogue Medium. So its just there to be able to store a digital signal on a tape. if you use digital recording technology you probably already have that. (its the same thing that is done to speech when you use a cell-phone) – LvB May 22 '15 at 14:36