Incognito

Hey everyone, lm newbie here.
I wanna ask the pro here one quest
I use an incognito web browser then paid a visit to my friends' websites.
My friends told even they couldn't get my real ip. But they could see my real identification of the device I used.
Now can the pro tell me some web browsers or vpn which can hide my device info such as mac address, imei....
Thank a lot, guys
 
A MAC will never be hidden as that is the foundation of ethernet routing (the IP is just an alias). Even though you might use an anonymous system like TOR, the true MAC of the origin point will be embedded in the packet chain.

The specific device info is interesting -- can you verify and demonstrate what IS ACTUALLY revealed.
 
I believe the originating MAC is changed several times as the data makes its way to its destination. Once you leave the routing device a more appropriate MAC is embedded.
 
On an Apache server (which typically logs webpage access), the only user info is
  • "Mozilla/5.0 (Windows NT 6.1; WOW64; rv:45.0) Gecko/20100101 Firefox/45.0"
which comes from the browser User Agent(UA) string. This helps the server respond correctly.

This is not DEVICE INFORMATION. The UA from an iPhone looks like
  • Mozilla/5.0 (iPhone; U; CPU iPhone OS 3_0 like Mac OS X; en-us) AppleWebKit/528.18 (KHTML, like Gecko) Version/4.0 Mobile/7A341 Safari/528.16
and again, this is used to assist in making a reasonable presentation to small screen devices. (the read portion is related to the browser on a specific iPhone)

my real identification of the device I used
Previously asked What is being disclosed? As shown by the UA strings, nothing personal is captured (and I don't think such is even available).
 
Last edited by a moderator:
Here's the config controls for Apache 2.4, Custom Log Formats.

this
  • %u Remote user if the request was authenticated.
will return the USER-ID if a login was required.

These show the users IP address
  • %a Client IP address of the request (see the mod_remoteip module).
    %{c}a Underlying peer IP address of the connection (see the mod_remoteip module).
    %A Local IP-address.
This will perform a DNS lookup, so client systems are not likely to produce useful info
  • %h Remote hostname. Will log the IP address if HostnameLookups is set to Off, which is the default. If it logs the hostname for only a few hosts, you probably have access control directives mentioning them by name. See the Require host documentation.
    %{c}h Like %h, but always reports on the hostname of the underlying TCP connection and not any modifications to the remote hostname by modules like mod_remoteip.
NOTICE:- no mention of TCP MAC addresses anywhere

Code:
Custom Log Formats

The format argument to the LogFormat and CustomLog directives is a string. This string is used to log each request to the log file. It can contain literal characters copied into the log files and the C-style control characters "\n" and "\t" to represent new-lines and tabs. Literal quotes and backslashes should be escaped with backslashes.

The characteristics of the request itself are logged by placing "%" directives in the format string, which are replaced in the log file by the values as follows:
Format String     Description
%%     The percent sign.
%a     Client IP address of the request (see the mod_remoteip module).
%{c}a     Underlying peer IP address of the connection (see the mod_remoteip module).
%A     Local IP-address.
%B     Size of response in bytes, excluding HTTP headers.
%b     Size of response in bytes, excluding HTTP headers. In CLF format, I.e. a '-' rather than a 0 when no bytes are sent.
%{VARNAME}C     The contents of cookie VARNAME in the request sent to the server. Only version 0 cookies are fully supported.
%D     The time taken to serve the request, in microseconds.
%{VARNAME}e     The contents of the environment variable VARNAME.
%f     Filename.
%h     Remote hostname. Will log the IP address if HostnameLookups is set to Off, which is the default. If it logs the hostname for only a few hosts, you probably have access control directives mentioning them by name. See the Require host documentation.
%{c}h     Like %h, but always reports on the hostname of the underlying TCP connection and not any modifications to the remote hostname by modules like mod_remoteip.
%H     The request protocol.
%{VARNAME}I     The contents of VARNAME: header line(s) in the request sent to the server. Changes made by other modules (e.g. mod_headers) affect this. If you're interested in what the request header was prior to when most modules would have modified it, use mod_setenvif to copy the header into an internal environment variable and log that value with the %{VARNAME}e described above.
%k     Number of keepalive requests handled on this connection. Interesting if KeepAlive is being used, so that, for example, a '1' means the first keepalive request after the initial one, '2' the second, etc...; otherwise this is always 0 (indicating the initial request).
%l     Remote logname (from identd, if supplied). This will return a dash unless mod_ident is present and IdentityCheck is set On.
%L     The request log ID from the error log (or '-' if nothing has been logged to the error log for this request). Look for the matching error log line to see what request caused what error.
%m     The request method.
%{VARNAME}n     The contents of note VARNAME from another module.
%{VARNAME}o     The contents of VARNAME: header line(s) in the reply.
%p     The canonical port of the server serving the request.
%{format}p     The canonical port of the server serving the request, or the server's actual port, or the client's actual port. Valid formats are canonical, local, or remote.
%P     The process ID of the child that serviced the request.
%{format}P     The process ID or thread ID of the child that serviced the request. Valid formats are pid, tid, and hextid. hextid requires APR 1.2.0 or higher.
%q     The query string (prepended with a ? if a query string exists, otherwise an empty string).
%r     First line of request.
%R     The handler generating the response (if any).
%s     Status. For requests that have been internally redirected, this is the status of the original request. Use %>s for the final status.
%t     Time the request was received, in the format [18/Sep/2011:19:18:28 -0400]. The last number indicates the timezone offset from GMT
%{format}t     The time, in the form given by format, which should be in an extended strftime(3) format (potentially localized). If the format starts with begin: (default) the time is taken at the beginning of the request processing. If it starts with end: it is the time when the log entry gets written, close to the end of the request processing. In addition to the formats supported by strftime(3), the following format tokens are supported:
sec    number of seconds since the Epoch
msec    number of milliseconds since the Epoch
usec    number of microseconds since the Epoch
msec_frac    millisecond fraction
usec_frac    microsecond fraction
These tokens can not be combined with each other or strftime(3) formatting in the same format string. You can use multiple %{format}t tokens instead.
%T     The time taken to serve the request, in seconds.
%{UNIT}T     The time taken to serve the request, in a time unit given by UNIT. Valid units are ms for milliseconds, us for microseconds, and s for seconds. Using s gives the same result as %T without any format; using us gives the same result as %D. Combining %T with a unit is available in 2.4.13 and later.
%u     Remote user if the request was authenticated. May be bogus if return status (%s) is 401 (unauthorized).
%U     The URL path requested, not including any query string.
%v     The canonical ServerName of the server serving the request.
%V     The server name according to the UseCanonicalName setting.
%X     Connection status when response is completed:
X =     Connection aborted before the response completed.
+ =     Connection may be kept alive after the response is sent.
- =     Connection will be closed after the response is sent.
%I     Bytes received, including request and headers. Cannot be zero. You need to enable mod_logio to use this.
%O     Bytes sent, including headers. May be zero in rare cases such as when a request is aborted before a response is sent. You need to enable mod_logio to use this.
%S     Bytes transferred (received and sent), including request and headers, cannot be zero. This is the combination of %I and %O. You need to enable mod_logio to use this.
%{VARNAME}^ti     The contents of VARNAME: trailer line(s) in the request sent to the server.
%{VARNAME}^to     The contents of VARNAME: trailer line(s) in the response sent from the server.
Modifiers

Particular items can be restricted to print only for responses with specific HTTP status codes by placing a comma-separated list of status codes immediately following the "%". The status code list may be preceded by a "!" to indicate negation.
Format String     Meaning
%400,501{User-agent}I     Logs User-agent on 400 errors and 501 errors only. For other status codes, the literal string "-" will be logged.
%!200,304,302{Referer}I     Logs Referer on all requests that do not return one of the three specified codes, "-" otherwise.

The modifiers "<" and ">" can be used for requests that have been internally redirected to choose whether the original or final (respectively) request should be consulted. By default, the % directives %s, %U, %T, %D, and %r look at the original request while all others look at the final request. So for example, %>s can be used to record the final status of the request and %<u can be used to record the original authenticated user on a request that is internally redirected to an unauthenticated resource.
Format Notes

For security reasons, starting with version 2.0.46, non-printable and other special characters in %r, %I and %o are escaped using \xhh sequences, where hh stands for the hexadecimal representation of the raw byte. Exceptions from this rule are " and \, which are escaped by prepending a backslash, and all whitespace characters, which are written in their C-style notation (\n, \t, etc). In versions prior to 2.0.46, no escaping was performed on these strings so you had to be quite careful when dealing with raw log files.

Since httpd 2.0, unlike 1.3, the %b and %B format strings do not represent the number of bytes sent to the client, but simply the size in bytes of the HTTP response (which will differ, for instance, if the connection is aborted, or if SSL is used). The %O format provided by mod_logio will log the actual number of bytes sent over the network.

Note: mod_cache is implemented as a quick-handler and not as a standard handler. Therefore, the %R format string will not return any handler information when content caching is involved.
Examples

Some commonly used log format strings are:

Common Log Format (CLF)
    "%h %l %u %t \"%r\" %>s %b"
Common Log Format with Virtual Host
    "%v %h %l %u %t \"%r\" %>s %b"
NCSA extended/combined log format
    "%h %l %u %t \"%r\" %>s %b \"%{Referer}I\" \"%{User-agent}I\""
Referer log format
    "%{Referer}I -> %U"
Agent (Browser) log format
    "%{User-agent}I"

You can use the %{format}t directive multiple times to build up a time format using the extended format tokens like msec_frac:

Timestamp including milliseconds
    "%{%d/%b/%Y %T}t.%{msec_frac}t %{%z}t"
 
Back