2022-01-19 14:12:52 +01:00
|
|
|
|
import React from 'react';
|
|
|
|
|
import { getMemory } from '../memory';
|
|
|
|
|
import { StolenDataEntry } from '../stolen-data-entry';
|
2021-11-07 17:18:17 +01:00
|
|
|
|
|
2022-01-19 14:12:52 +01:00
|
|
|
|
import { maskString, useEmitter } from '../util';
|
2021-11-07 10:09:41 +01:00
|
|
|
|
|
2021-11-21 22:38:32 +01:00
|
|
|
|
const MAX_STRING_VALUE_LENGTH = 100;
|
|
|
|
|
|
2021-11-07 10:09:41 +01:00
|
|
|
|
function StolenDataValue({
|
2022-01-19 14:12:52 +01:00
|
|
|
|
entry,
|
2021-11-07 10:09:41 +01:00
|
|
|
|
}: {
|
2022-01-19 14:12:52 +01:00
|
|
|
|
entry: StolenDataEntry;
|
|
|
|
|
prefixKey?: string;
|
2021-11-07 10:09:41 +01:00
|
|
|
|
}) {
|
2022-01-19 14:12:52 +01:00
|
|
|
|
const [version] = useEmitter(entry);
|
|
|
|
|
let body = null;
|
|
|
|
|
if (!entry.value) {
|
|
|
|
|
body = <></>;
|
|
|
|
|
} else {
|
|
|
|
|
body = (
|
|
|
|
|
<div data-version={version}>
|
|
|
|
|
{maskString(entry.value, 1, MAX_STRING_VALUE_LENGTH)}
|
|
|
|
|
</div>
|
|
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
return (
|
|
|
|
|
<div
|
|
|
|
|
onClick={(e) => {
|
|
|
|
|
entry.toggleMark();
|
|
|
|
|
e.stopPropagation();
|
|
|
|
|
}}
|
|
|
|
|
style={{ color: entry.isMarked ? 'black' : 'gray' }}
|
|
|
|
|
>
|
|
|
|
|
{body}
|
|
|
|
|
</div>
|
2021-11-07 13:01:01 +01:00
|
|
|
|
);
|
2021-11-07 10:09:41 +01:00
|
|
|
|
}
|
2021-11-07 09:17:19 +01:00
|
|
|
|
|
2022-01-19 14:12:52 +01:00
|
|
|
|
function StolenDataRow({
|
|
|
|
|
entry,
|
|
|
|
|
refresh,
|
|
|
|
|
}: {
|
|
|
|
|
entry: StolenDataEntry;
|
|
|
|
|
refresh: Function;
|
|
|
|
|
}) {
|
|
|
|
|
const [version] = useEmitter(entry);
|
|
|
|
|
return (
|
|
|
|
|
<tr data-key={entry.id} data-version={version}>
|
|
|
|
|
<td>
|
|
|
|
|
<input
|
|
|
|
|
type="checkbox"
|
|
|
|
|
checked={entry.isMarked}
|
|
|
|
|
onChange={() => {
|
|
|
|
|
entry.toggleMark();
|
|
|
|
|
refresh();
|
|
|
|
|
}}
|
|
|
|
|
/>
|
|
|
|
|
</td>
|
|
|
|
|
<th
|
|
|
|
|
style={{
|
|
|
|
|
width: '100px',
|
|
|
|
|
overflowWrap: 'anywhere',
|
|
|
|
|
}}
|
|
|
|
|
title={'Źródło: ' + entry.source}
|
|
|
|
|
onClick={() => {
|
|
|
|
|
entry.toggleMark();
|
|
|
|
|
refresh();
|
|
|
|
|
}}
|
|
|
|
|
>
|
|
|
|
|
{entry.name}
|
|
|
|
|
</th>
|
|
|
|
|
<td style={{ whiteSpace: 'nowrap' }}>
|
|
|
|
|
{entry.source === 'cookie' ? (
|
|
|
|
|
<span title="Dane przechowywane w Cookies">🍪</span>
|
|
|
|
|
) : entry.request.hasCookie() ? (
|
|
|
|
|
<span
|
|
|
|
|
title="Wysłane w zapytaniu opatrzonym cookies"
|
|
|
|
|
style={{ opacity: 0.5, fontSize: '0.5em' }}
|
|
|
|
|
>
|
|
|
|
|
🍪
|
|
|
|
|
</span>
|
|
|
|
|
) : null}
|
|
|
|
|
{entry.exposesOrigin() ? (
|
|
|
|
|
<span title="Pokazuje część historii przeglądania">⚠️</span>
|
|
|
|
|
) : entry.request.exposesOrigin() ? (
|
|
|
|
|
<span
|
|
|
|
|
title="Jest częścią zapytania, które ujawnia historię przeglądania"
|
|
|
|
|
style={{ opacity: 0.5, fontSize: '0.5em' }}
|
|
|
|
|
>
|
|
|
|
|
⚠️
|
|
|
|
|
</span>
|
|
|
|
|
) : null}
|
|
|
|
|
</td>
|
|
|
|
|
<td style={{ wordWrap: 'anywhere' as any }}>
|
|
|
|
|
<StolenDataValue entry={entry} />
|
|
|
|
|
</td>
|
|
|
|
|
</tr>
|
|
|
|
|
);
|
2021-11-21 23:00:55 +01:00
|
|
|
|
}
|
|
|
|
|
|
2021-11-07 11:18:53 +01:00
|
|
|
|
export default function StolenDataCluster({
|
2022-01-19 14:12:52 +01:00
|
|
|
|
origin,
|
|
|
|
|
shorthost,
|
|
|
|
|
minValueLength,
|
|
|
|
|
refresh,
|
|
|
|
|
cookiesOnly,
|
|
|
|
|
cookiesOrOriginOnly,
|
2021-11-07 09:17:19 +01:00
|
|
|
|
}: {
|
2022-01-19 14:12:52 +01:00
|
|
|
|
origin: string;
|
|
|
|
|
shorthost: string;
|
|
|
|
|
refreshToken: number;
|
|
|
|
|
minValueLength: number;
|
|
|
|
|
refresh: Function;
|
|
|
|
|
cookiesOnly: boolean;
|
|
|
|
|
cookiesOrOriginOnly: boolean;
|
2021-11-07 09:17:19 +01:00
|
|
|
|
}) {
|
2022-01-19 14:12:52 +01:00
|
|
|
|
const cluster = getMemory().getClustersForOrigin(origin)[shorthost];
|
|
|
|
|
return (
|
|
|
|
|
<div>
|
|
|
|
|
<h2>
|
|
|
|
|
<a href={'https://' + cluster.id}>{cluster.id}</a>{' '}
|
|
|
|
|
{cluster.hasCookies() ? '🍪' : ''} x{cluster.requests.length}{' '}
|
|
|
|
|
{/* <a
|
|
|
|
|
* href="#"
|
|
|
|
|
* style={{ fontSize: "10px" }}
|
|
|
|
|
* onClick={() => getMemory().removeCookiesFor(origin, shorthost)}
|
|
|
|
|
* >
|
|
|
|
|
* Wyczyść cookiesy
|
|
|
|
|
* </a> */}
|
|
|
|
|
<a
|
|
|
|
|
href="#"
|
|
|
|
|
style={{ fontSize: '10px' }}
|
|
|
|
|
onClick={(e) => {
|
|
|
|
|
cluster.autoMark();
|
|
|
|
|
refresh();
|
|
|
|
|
e.preventDefault();
|
|
|
|
|
}}
|
|
|
|
|
>
|
|
|
|
|
Zaznacz auto
|
|
|
|
|
</a>
|
|
|
|
|
</h2>
|
|
|
|
|
<div>
|
|
|
|
|
{cluster.getFullHosts().map((host) => (
|
|
|
|
|
<a key={host} href={`https://${host}`}>
|
|
|
|
|
{host},{' '}
|
|
|
|
|
</a>
|
|
|
|
|
))}
|
|
|
|
|
</div>
|
|
|
|
|
<table>
|
|
|
|
|
<tbody>
|
|
|
|
|
{cluster
|
|
|
|
|
.calculateRepresentativeStolenData({
|
|
|
|
|
minValueLength,
|
|
|
|
|
cookiesOnly,
|
|
|
|
|
cookiesOrOriginOnly,
|
|
|
|
|
})
|
|
|
|
|
.map((entry) => (
|
|
|
|
|
<StolenDataRow
|
|
|
|
|
refresh={refresh}
|
|
|
|
|
{...{
|
|
|
|
|
entry,
|
|
|
|
|
key: entry.id,
|
|
|
|
|
}}
|
|
|
|
|
/>
|
|
|
|
|
))}
|
|
|
|
|
</tbody>
|
|
|
|
|
</table>
|
|
|
|
|
</div>
|
|
|
|
|
);
|
2021-11-07 09:17:19 +01:00
|
|
|
|
}
|