repo_name
stringlengths
4
68
text
stringlengths
21
269k
avg_line_length
float64
9.4
9.51k
max_line_length
int64
20
28.5k
alphnanum_fraction
float64
0.3
0.92
cybersecurity-penetration-testing
/** * Copyright (c) Meta Platforms, Inc. and affiliates. * * This source code is licensed under the MIT license found in the * LICENSE file in the root directory of this source tree. * * @flow */ // This file uses workerize to load ./importFile.worker as a webworker and instanciates it, // exposing flow typed f...
31.060606
91
0.752129
Hands-On-Penetration-Testing-with-Python
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.Component = Component; var _react = _interopRequireDefault(require("react")); var _useTheme = _interopRequireDefault(require("./useTheme")); var _jsxFileName = ""; function _interopRequireDefault(obj) { return obj && obj.__esMod...
62.461538
1,048
0.861734
null
/** * Copyright (c) Meta Platforms, Inc. and affiliates. * * This source code is licensed under the MIT license found in the * LICENSE file in the root directory of this source tree. * * @flow */ import * as acorn from 'acorn-loose'; type ResolveContext = { conditions: Array<string>, parentURL: string | vo...
28.698347
93
0.622347
Tricks-Web-Penetration-Tester
// @flow import memoizeOne from 'memoize-one'; import * as React from 'react'; import { createElement, PureComponent } from 'react'; import { cancelTimeout, requestTimeout } from './timer'; import { getRTLOffsetType } from './domHelpers'; import type { TimeoutID } from './timer'; export type ScrollToAlign = 'auto' |...
29.603022
132
0.607819
owtf
const React = window.React; class HitBox extends React.Component { state = { x: 0, y: 0, }; static defaultProps = { onMouseMove: n => n, }; onMove = event => { this.setState({x: event.clientX, y: event.clientY}); this.props.onMouseMove(event); }; render() { const {x, y} = this....
16.307692
56
0.534125
cybersecurity-penetration-testing
/** * Copyright (c) Meta Platforms, Inc. and affiliates. * * This source code is licensed under the MIT license found in the * LICENSE file in the root directory of this source tree. * * @emails react-core */ 'use strict'; const ReactDOMServerIntegrationUtils = require('./utils/ReactDOMServerIntegrationTestUti...
24.723077
94
0.576791
owtf
const React = window.React; function csv(string) { return string.split(/\s*,\s*/); } export default function IssueList({issues}) { if (!issues) { return null; } if (typeof issues === 'string') { issues = csv(issues); } let links = issues.reduce((memo, issue, i) => { return memo.concat( ...
18.37037
80
0.549808
null
#!/usr/bin/env node 'use strict'; const {exec} = require('child-process-promise'); const {join} = require('path'); const puppeteer = require('puppeteer'); const server = require('pushstate-server'); const theme = require('../theme'); const {logPromise} = require('../utils'); const validate = async () => { const br...
21.769231
74
0.598873
null
/** * Copyright (c) Meta Platforms, Inc. and affiliates. * * This source code is licensed under the MIT license found in the * LICENSE file in the root directory of this source tree. * * @emails react-core */ 'use strict'; let formatProdErrorMessage; describe('ReactErrorProd', () => { beforeEach(() => { ...
34.952381
102
0.656064
PenetrationTestingScripts
/* global chrome */ 'use strict'; import setExtensionIconAndPopup from './setExtensionIconAndPopup'; function isRestrictedBrowserPage(url) { return !url || new URL(url).protocol === 'chrome:'; } function checkAndHandleRestrictedPageIfSo(tab) { if (tab && isRestrictedBrowserPage(tab.url)) { setExtensionIconA...
38.340909
124
0.723121
owtf
import Fixture from '../../Fixture'; import FixtureSet from '../../FixtureSet'; import TestCase from '../../TestCase'; const React = window.React; export default class TextAreaFixtures extends React.Component { state = {value: ''}; onChange = event => { this.setState({value: event.target.value}); }; rende...
31.505882
146
0.51412
null
/** * Copyright (c) Meta Platforms, Inc. and affiliates. * * This source code is licensed under the MIT license found in the * LICENSE file in the root directory of this source tree. * * @emails react-core */ 'use strict'; // Polyfills for test environment global.ReadableStream = require('web-streams-polyfil...
30.155235
93
0.644107
null
'use strict'; const Sequencer = require('@jest/test-sequencer').default; class CustomSequencer extends Sequencer { sort(tests) { if (process.env.CIRCLE_NODE_TOTAL) { // In CI, parallelize tests across multiple tasks. const nodeTotal = parseInt(process.env.CIRCLE_NODE_TOTAL, 10); const nodeInde...
27.15
68
0.633452
Python-Penetration-Testing-for-Developers
'use strict'; if (process.env.NODE_ENV === 'production') { module.exports = require('./cjs/react-server-dom-turbopack-server.node.unbundled.production.min.js'); } else { module.exports = require('./cjs/react-server-dom-turbopack-server.node.unbundled.development.js'); }
33.625
103
0.724638
Hands-On-Penetration-Testing-with-Python
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.ListItem = ListItem; exports.List = List; var React = _interopRequireWildcard(require("react")); var _jsxFileName = ""; function _getRequireWildcardCache() { if (typeof WeakMap !== "function") return null; var cache = new WeakMap...
30.425
743
0.603939
Python-Penetration-Testing-Cookbook
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.Component = Component; var _react = _interopRequireDefault(require("react")); var _useTheme = _interopRequireDefault(require("./useTheme")); var _jsxFileName = ""; function _interopRequireDefault(obj) { return obj && obj.__esMod...
65.230769
1,120
0.868681
cybersecurity-penetration-testing
/** * Copyright (c) Meta Platforms, Inc. and affiliates. * * This source code is licensed under the MIT license found in the * LICENSE file in the root directory of this source tree. * * @emails react-core */ 'use strict'; let React; let ReactDOM; describe('BeforeInputEventPlugin', () => { let container; ...
31.905771
114
0.573239
PenetrationTestingScripts
/** * Copyright (c) Meta Platforms, Inc. and affiliates. * * This source code is licensed under the MIT license found in the * LICENSE file in the root directory of this source tree. * * @flow */ import type Agent from 'react-devtools-shared/src/backend/agent'; import {isReactNativeEnvironment} from 'react-dev...
21.72
81
0.709924
cybersecurity-penetration-testing
/** * Copyright (c) Meta Platforms, Inc. and affiliates. * * This source code is licensed under the MIT license found in the * LICENSE file in the root directory of this source tree. * * @flow */ import type {Rect} from '../geometry'; import type {Surface, ViewRefs} from '../Surface'; import type { Interactio...
25.168182
77
0.65827
owtf
import FixtureSet from '../../FixtureSet'; import TestCase from '../../TestCase'; import ControlledFormFixture from './ControlledFormFixture'; const React = window.React; export default class FormStateCases extends React.Component { render() { return ( <FixtureSet title="Form State"> <TestCase ...
33.163934
199
0.530005
null
/** * Copyright (c) Meta Platforms, Inc. and affiliates. * * This source code is licensed under the MIT license found in the * LICENSE file in the root directory of this source tree. */ import * as Scheduler from 'scheduler'; import ReactCurrentDispatcher from '../ReactCurrentDispatcher'; import ReactCurrentCache...
34.52381
81
0.788062
cybersecurity-penetration-testing
/** * Copyright (c) Meta Platforms, Inc. and affiliates. * * This source code is licensed under the MIT license found in the * LICENSE file in the root directory of this source tree. * * @emails react-core * @jest-environment node */ 'use strict'; let React; let StrictMode; let ReactNative; let createReactNat...
28.76824
125
0.627001
cybersecurity-penetration-testing
/** * Copyright (c) Meta Platforms, Inc. and affiliates. * * This source code is licensed under the MIT license found in the * LICENSE file in the root directory of this source tree. * * @emails react-core */ 'use strict'; // Fix JSDOM. setAttribute is supposed to throw on things that can't be implicitly toStr...
33.223246
105
0.591079
Python-Penetration-Testing-Cookbook
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.Component = Component; var _react = require("react"); /** * Copyright (c) Meta Platforms, Inc. and affiliates. * * This source code is licensed under the MIT license found in the * LICENSE file in the root directory of this so...
70.833333
1,448
0.873259
owtf
import PropTypes from 'prop-types'; import semver from 'semver'; export function semverString(props, propName, componentName) { let version = props[propName]; let error = PropTypes.string(...arguments); if (!error && version != null && !semver.valid(version)) error = new Error( `\`${propName}\` should...
26.1875
72
0.663594
cybersecurity-penetration-testing
/** * Copyright (c) Meta Platforms, Inc. and affiliates. * * This source code is licensed under the MIT license found in the * LICENSE file in the root directory of this source tree. * * @flow */ export * from './src/ReactNoopFlightClient';
21.727273
66
0.698795
PenetrationTestingScripts
/* global chrome */ export function setBrowserSelectionFromReact() { // This is currently only called on demand when you press "view DOM". // In the future, if Chrome adds an inspect() that doesn't switch tabs, // we could make this happen automatically when you select another component. chrome.devtools.inspec...
33.697674
100
0.631791
null
/** * Copyright (c) Meta Platforms, Inc. and affiliates. * * This source code is licensed under the MIT license found in the * LICENSE file in the root directory of this source tree. * * @emails react-core * @jest-environment node */ 'use strict'; let React; let ReactTestRenderer; let Scheduler; let waitForAl...
24.687898
79
0.576885
cybersecurity-penetration-testing
/** * Copyright (c) Meta Platforms, Inc. and affiliates. * * This source code is licensed under the MIT license found in the * LICENSE file in the root directory of this source tree. * * @flow */ // Renderers that don't support persistence // can re-export everything from this module. function shim(...args: an...
28.866667
66
0.744134
owtf
import React from 'react'; import useTime from './useTime'; export default function Clock() { const time = useTime(); return <p>Time: {time}</p>; }
16.222222
33
0.662338
Python-Penetration-Testing-Cookbook
/** * Copyright (c) Meta Platforms, Inc. and affiliates. * * This source code is licensed under the MIT license found in the * LICENSE file in the root directory of this source tree. * * @flow */ import LRU from 'lru-cache'; import { convertInspectedElementBackendToFrontend, hydrateHelper, inspectElement ...
32.168605
121
0.666374
owtf
'use strict'; // This is a server to host data-local resources like databases and RSC const path = require('path'); const register = require('react-server-dom-webpack/node-register'); register(); const babelRegister = require('@babel/register'); babelRegister({ babelrc: false, ignore: [ /\/(build|node_modul...
26.73399
85
0.624445
owtf
var path = require('path'); var webpack = require('webpack'); module.exports = { entry: './input', output: { filename: 'output.js', }, resolve: { root: path.resolve('../../../../build/oss-experimental/'), }, plugins: [ new webpack.DefinePlugin({ 'process.env': { NODE_ENV: JSON.str...
17.4
62
0.53951
owtf
import React, {useContext, useState, Suspense} from 'react'; import Chrome from './Chrome'; import Page from './Page'; import Page2 from './Page2'; import Theme from './Theme'; function LoadingIndicator() { let theme = useContext(Theme); return <div className={theme + '-loading'}>Loading...</div>; } function Con...
21.615385
66
0.574347
null
/** * Copyright (c) Meta Platforms, Inc. and affiliates. * * This source code is licensed under the MIT license found in the * LICENSE file in the root directory of this source tree. * * @flow */ import typeof * as FeatureFlagsType from 'shared/ReactFeatureFlags'; import typeof * as ExportsType from './ReactFea...
39.913043
76
0.831517
null
/** * Copyright (c) Meta Platforms, Inc. and affiliates. * * This source code is licensed under the MIT license found in the * LICENSE file in the root directory of this source tree. * * @flow */ import typeof * as FeatureFlagsType from 'shared/ReactFeatureFlags'; import typeof * as ExportsType from './ReactFea...
40.067416
76
0.832512
null
/** * Copyright (c) Meta Platforms, Inc. and affiliates. * * This source code is licensed under the MIT license found in the * LICENSE file in the root directory of this source tree. * * @flow */ import type {Thenable} from 'shared/ReactTypes.js'; import type {Response as FlightResponse} from 'react-client/src...
21.839286
83
0.700039
PenTestScripts
/** * Copyright (c) Meta Platforms, Inc. and affiliates. * * This source code is licensed under the MIT license found in the * LICENSE file in the root directory of this source tree. * * @flow */ // This is a host config that's used for the `react-server` package on npm. // It is only used by third-party render...
36.02
84
0.76
cybersecurity-penetration-testing
/** * Copyright (c) Meta Platforms, Inc. and affiliates. * * This source code is licensed under the MIT license found in the * LICENSE file in the root directory of this source tree. * * @flow */ // When passing user input into querySelector(All) the embedded string must not alter // the semantics of the query....
34.666667
90
0.745029
Mastering-Kali-Linux-for-Advanced-Penetration-Testing-Second-Edition
'use strict'; Object.defineProperty(exports, '__esModule', { value: true }); function _interopDefault (ex) { return (ex && (typeof ex === 'object') && 'default' in ex) ? ex['default'] : ex; } var _extends = _interopDefault(require('@babel/runtime/helpers/extends')); var _inheritsLoose = _interopDefault(require('@bab...
38.475962
361
0.65927
Penetration-Testing-with-Shellcode
/** * Copyright (c) Meta Platforms, Inc. and affiliates. * * This source code is licensed under the MIT license found in the * LICENSE file in the root directory of this source tree. * * @flow */ export function loadChunk(filename: string): Promise<mixed> { return __turbopack_load__(filename); }
22.692308
66
0.703583
owtf
#!/usr/bin/env node 'use strict'; const { copyFileSync, existsSync, mkdirSync, readFileSync, rmdirSync, } = require('fs'); const {join} = require('path'); const http = require('http'); const DEPENDENCIES = [ ['scheduler/umd/scheduler.development.js', 'scheduler.js'], ['react/umd/react.development.js', ...
25.924051
63
0.633114
PenetrationTestingScripts
/** * Copyright (c) Meta Platforms, Inc. and affiliates. * * This source code is licensed under the MIT license found in the * LICENSE file in the root directory of this source tree. * * @flow */ describe('Fast Refresh', () => { let React; let ReactFreshRuntime; let act; let babel; let container; le...
25.605263
86
0.602035
Python-Penetration-Testing-for-Developers
/** * Copyright (c) Meta Platforms, Inc. and affiliates. * * This source code is licensed under the MIT license found in the * LICENSE file in the root directory of this source tree. * * @flow */ throw new Error( 'The React Server cannot be used outside a react-server environment. ' + 'You must configure ...
26
77
0.700265
null
/** * Copyright (c) Meta Platforms, Inc. and affiliates. * * This source code is licensed under the MIT license found in the * LICENSE file in the root directory of this source tree. * * @emails react-core */ 'use strict'; let PropTypes; let React; let ReactDOM; let ReactDOMClient; describe('ReactES6Class', (...
29.328926
102
0.571234
Python-Penetration-Testing-for-Developers
/** * Copyright (c) Meta Platforms, Inc. and affiliates. * * This source code is licensed under the MIT license found in the * LICENSE file in the root directory of this source tree. */ 'use strict'; export default function (babel, opts = {}) { if (typeof babel.env === 'function') { // Only available in Ba...
32.053318
96
0.526814
owtf
/* * Copyright (c) Facebook, Inc. and its affiliates. */ import {Children} from 'react'; // TODO: This logic could be in MDX plugins instead. // ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ export const PREPARE_MDX_CACHE_BREAKER = 3; // !!! IMPORTANT !!! Bump this if you change any logic. // ~~~~~~~~~~~~~~...
23.983051
79
0.558534
Python-Penetration-Testing-Cookbook
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.default = useTheme; exports.ThemeContext = void 0; var _react = require("react"); /** * Copyright (c) Meta Platforms, Inc. and affiliates. * * This source code is licensed under the MIT license found in the * LICENSE file in t...
60.555556
1,052
0.879591
cybersecurity-penetration-testing
/** * Copyright (c) Meta Platforms, Inc. and affiliates. * * This source code is licensed under the MIT license found in the * LICENSE file in the root directory of this source tree. * * @flow */ import {hslaColorToString, dimmedColor, ColorGenerator} from '../colors'; describe(hslaColorToString, () => { it(...
29.06383
78
0.558584
null
/** * Copyright (c) Meta Platforms, Inc. and its affiliates. * * This source code is licensed under the MIT license found in the * LICENSE file in the root directory of this source tree. * * @emails react-core */ 'use strict'; // Polyfills for test environment global.ReadableStream = require('web-streams-pol...
29.318681
78
0.679478
null
/** * Copyright (c) Meta Platforms, Inc. and affiliates. * * This source code is licensed under the MIT license found in the * LICENSE file in the root directory of this source tree. * * @noflow */ // Provided by www const ReactFbErrorUtils = require('ReactFbErrorUtils'); if (typeof ReactFbErrorUtils.invokeGua...
23.028571
73
0.680952
cybersecurity-penetration-testing
/** * Copyright (c) Meta Platforms, Inc. and affiliates. * * This source code is licensed under the MIT license found in the * LICENSE file in the root directory of this source tree. * * @flow */ export const moduleAStartError = new Error(); export const innerErrorA = new Error(); export const moduleAStopError ...
25.736842
66
0.731755
cybersecurity-penetration-testing
/** * Copyright (c) Meta Platforms, Inc. and affiliates. * * This source code is licensed under the MIT license found in the * LICENSE file in the root directory of this source tree. * * @emails react-core */ 'use strict'; import { getVisibleChildren, insertNodesAndExecuteScripts, } from '../test-utils/Fiz...
24.371811
283
0.572621
cybersecurity-penetration-testing
/** * Copyright (c) Meta Platforms, Inc. and affiliates. * * This source code is licensed under the MIT license found in the * LICENSE file in the root directory of this source tree. * * @flow */ import { clampState, moveStateToRange, areScrollStatesEqual, translateState, zoomState, } from '../scrollS...
23.538168
88
0.564717
PenetrationTestingScripts
/** * Copyright (c) Meta Platforms, Inc. and affiliates. * * This source code is licensed under the MIT license found in the * LICENSE file in the root directory of this source tree. * * @flow */ import memoize from 'memoize-one'; import throttle from 'lodash.throttle'; import Agent from 'react-devtools-shared/...
29.536697
103
0.680739
Penetration-Testing-with-Shellcode
/** * Copyright (c) Meta Platforms, Inc. and affiliates. * * This source code is licensed under the MIT license found in the * LICENSE file in the root directory of this source tree. * * @flow */ import {preinitScriptForSSR} from 'react-client/src/ReactFlightClientConfig'; export type ModuleLoading = null | { ...
22.242424
77
0.668407
cybersecurity-penetration-testing
/** * Copyright (c) Meta Platforms, Inc. and affiliates. * * This source code is licensed under the MIT license found in the * LICENSE file in the root directory of this source tree. * * @flow */ import * as React from 'react'; export default function App(): React.Node { return <List />; } class List extend...
21.491228
73
0.56128
null
'use strict'; /* global __REACT_DEVTOOLS_GLOBAL_HOOK__ */ if ( typeof __REACT_DEVTOOLS_GLOBAL_HOOK__ !== 'undefined' && typeof __REACT_DEVTOOLS_GLOBAL_HOOK__.registerInternalModuleStop === 'function' ) { __REACT_DEVTOOLS_GLOBAL_HOOK__.registerInternalModuleStop(new Error()); }
25.363636
73
0.685121
owtf
/* * Copyright (c) Facebook, Inc. and its affiliates. */ import {Fragment, useMemo} from 'react'; import {useRouter} from 'next/router'; import {Page} from 'components/Layout/Page'; import sidebarHome from '../sidebarHome.json'; import sidebarLearn from '../sidebarLearn.json'; import sidebarReference from '../sideba...
25.622857
88
0.604122
cybersecurity-penetration-testing
/** * Copyright (c) Meta Platforms, Inc. and affiliates. * * This source code is licensed under the MIT license found in the * LICENSE file in the root directory of this source tree. * * @emails react-core */ 'use strict'; describe('when Trusted Types are available in global object', () => { let React; let...
35.408907
98
0.638679
Effective-Python-Penetration-Testing
/** * Copyright (c) Meta Platforms, Inc. and affiliates. * * This source code is licensed under the MIT license found in the * LICENSE file in the root directory of this source tree. * * @flow */ import * as React from 'react'; import styles from './ButtonIcon.css'; export type IconType = | 'add' | 'cancel...
30.207885
337
0.601309
cybersecurity-penetration-testing
/** * Copyright (c) Meta Platforms, Inc. and affiliates. * * This source code is licensed under the MIT license found in the * LICENSE file in the root directory of this source tree. * * @flow */ /* eslint valid-typeof: 0 */ import type {Fiber} from 'react-reconciler/src/ReactInternalTypes'; import assign fro...
27.830252
83
0.675858
null
'use strict'; module.exports = { env: { commonjs: true, browser: true, }, globals: { // ES6 BigInt: 'readonly', Map: 'readonly', Set: 'readonly', Symbol: 'readonly', Proxy: 'readonly', WeakMap: 'readonly', WeakSet: 'readonly', Int8Array: 'readonly', Uint8Array: 'r...
22.679487
80
0.626219
cybersecurity-penetration-testing
/** * Copyright (c) Meta Platforms, Inc. and affiliates. * * This source code is licensed under the MIT license found in the * LICENSE file in the root directory of this source tree. * * @flow */ import * as React from 'react'; import {useRef, useState} from 'react'; export default function App(): React.Node {...
21.3
66
0.59605
owtf
import Fixture from '../../Fixture'; const React = window.React; class PasswordTestCase extends React.Component { state = {value: ''}; onChange = event => { this.setState({value: event.target.value}); }; render() { return ( <Fixture> <div>{this.props.children}</div> <div classNa...
21.875
55
0.50547
Python-Penetration-Testing-for-Developers
let PropTypes; let React; let ReactTestRenderer; let Scheduler; let ReactFeatureFlags; let Suspense; let lazy; let waitFor; let waitForAll; let waitForThrow; let assertLog; let act; let fakeModuleCache; function normalizeCodeLocInfo(str) { return ( str && str.replace(/\n +(?:at|in) ([\S]+)[^\n]*/g, function...
27.36029
155
0.578354
Python-Penetration-Testing-for-Developers
let React; let Fragment; let ReactNoop; let Scheduler; let act; let waitFor; let waitForAll; let waitForMicrotasks; let assertLog; let waitForPaint; let Suspense; let startTransition; let getCacheForType; let caches; let seededCache; describe('ReactSuspenseWithNoopRenderer', () => { beforeEach(() => { jest.rese...
27.278893
127
0.539241
cybersecurity-penetration-testing
/** * Copyright (c) Meta Platforms, Inc. and affiliates. * * This source code is licensed under the MIT license found in the * LICENSE file in the root directory of this source tree. * * @emails react-core */ 'use strict'; // Requires let React; let ReactDOM; let ReactTestUtils; // Test components let LowerLe...
27.777778
80
0.684979
owtf
import './index.css'; import React from 'react'; import ReactDOM from 'react-dom'; import App from './App'; ReactDOM.render(<App />, document.getElementById('root'));
23.142857
58
0.708333
Python-Penetration-Testing-Cookbook
/* * Copyright (c) Meta Platforms, Inc. and affiliates. * * This source code is licensed under the MIT license found in the * LICENSE file in the root directory of this source tree. * * @flow strict-local */ import type { HookMap, HookMapEntry, HookMapLine, HookMapMappings, } from './generateHookMap'; i...
30.330909
139
0.690772
Ethical-Hacking-Scripts
/** @flow */ import * as React from 'react'; import {Fragment} from 'react'; import {createPortal} from 'react-dom'; export default function Iframe(): React.Node { return ( <Fragment> <h2>Iframe</h2> <div> <Frame> <Greeting /> </Frame> </div> </Fragment> ); } c...
17.611111
66
0.5646
null
/** * Copyright (c) Meta Platforms, Inc. and its affiliates. * * This source code is licensed under the MIT license found in the * LICENSE file in the root directory of this source tree. * * @flow */ import { enableCache, enableFetchInstrumentation, } from 'shared/ReactFeatureFlags'; import ReactCurrentCac...
37.678082
121
0.633369
null
'use strict'; const fs = require('fs'); const path = require('path'); const ts = require('typescript'); const tsOptions = { module: ts.ModuleKind.CommonJS, jsx: ts.JsxEmit.React, }; function formatErrorMessage(error) { if (error.file) { const message = ts.flattenDiagnosticMessageText(error.messageText, '\n...
27.175926
84
0.605194
cybersecurity-penetration-testing
/** * Copyright (c) Meta Platforms, Inc. and affiliates. * * This source code is licensed under the MIT license found in the * LICENSE file in the root directory of this source tree. * * @emails react-core */ 'use strict'; let React = require('react'); const ReactTestUtils = require('react-dom/test-utils'); c...
31.459459
111
0.656667
Effective-Python-Penetration-Testing
/** * Copyright (c) Meta Platforms, Inc. and affiliates. * * This source code is licensed under the MIT license found in the * LICENSE file in the root directory of this source tree. * * @flow */ import {copy} from 'clipboard-js'; import EventEmitter from '../events'; import {inspect} from 'util'; import { PR...
30.779987
124
0.615786
null
/** * Copyright (c) Meta Platforms, Inc. and affiliates. * * This source code is licensed under the MIT license found in the * LICENSE file in the root directory of this source tree. * * @flow */ import type {Request} from 'react-server/src/ReactFlightServer'; export * from 'react-server-dom-turbopack/src/Reac...
30.789474
87
0.769486
PenetrationTestingScripts
/** * Copyright (c) Meta Platforms, Inc. and affiliates. * * This source code is licensed under the MIT license found in the * LICENSE file in the root directory of this source tree. * * @flow */ export * from 'react-client/src/ReactFlightClientConfigBrowser'; export * from 'react-dom-bindings/src/shared/ReactF...
35.461538
84
0.781415
null
/** * Copyright (c) Meta Platforms, Inc. and affiliates. * * This source code is licensed under the MIT license found in the * LICENSE file in the root directory of this source tree. */ 'use strict'; const { parse, SimpleTraverser: {traverse}, } = require('hermes-parser'); const fs = require('fs'); const thro...
24.622449
79
0.576494
cybersecurity-penetration-testing
/** * Copyright (c) Meta Platforms, Inc. and affiliates. * * This source code is licensed under the MIT license found in the * LICENSE file in the root directory of this source tree. * * @flow */ // Below code forked from dom-accessibility-api const tagToRoleMappings = { ARTICLE: 'article', ASIDE: 'complem...
21.65
104
0.582019
PenetrationTestingScripts
#!/usr/bin/env node 'use strict'; const chalk = require('chalk'); const {execSync} = require('child_process'); const {join} = require('path'); const {argv} = require('yargs'); const build = require('../build'); const main = async () => { const {crx} = argv; await build('edge'); const cwd = join(__dirname, '...
26.3
79
0.64253
Hands-On-Penetration-Testing-with-Python
"use strict"; /** * Copyright (c) Meta Platforms, Inc. and affiliates. * * This source code is licensed under the MIT license found in the * LICENSE file in the root directory of this source tree. * * */ const { useMemo, useState } = require('react'); function Component(props) { const InnerComponent = u...
19.071429
77
0.675579
null
#!/usr/bin/env node 'use strict'; const {join} = require('path'); const {getPublicPackages, handleError} = require('./utils'); const checkOutPackages = require('./prepare-release-from-npm-commands/check-out-packages'); const confirmStableVersionNumbers = require('./prepare-release-from-npm-commands/confirm-stable-ve...
34.372881
114
0.724832
cybersecurity-penetration-testing
'use strict'; if (process.env.NODE_ENV === 'production') { module.exports = require('./cjs/react-interactions-events/press.production.min.js'); } else { module.exports = require('./cjs/react-interactions-events/press.development.js'); }
29.375
86
0.710744
PenTesting
/** * Copyright (c) Meta Platforms, Inc. and affiliates. * * This source code is licensed under the MIT license found in the * LICENSE file in the root directory of this source tree. * * @flow */ export type ImportManifestEntry = { id: string, // chunks is an array of filenames chunks: Array<string>, na...
27.9
78
0.681385
null
'use strict'; const {exec} = require('child-process-promise'); const {createPatch} = require('diff'); const {hashElement} = require('folder-hash'); const {existsSync, readFileSync, writeFileSync} = require('fs'); const {readJson, writeJson} = require('fs-extra'); const fetch = require('node-fetch'); const logUpdate = ...
31.728522
121
0.671637
PenetrationTestingScripts
'use strict'; const {resolve} = require('path'); const Webpack = require('webpack'); const TerserPlugin = require('terser-webpack-plugin'); const { DARK_MODE_DIMMED_WARNING_COLOR, DARK_MODE_DIMMED_ERROR_COLOR, DARK_MODE_DIMMED_LOG_COLOR, LIGHT_MODE_DIMMED_WARNING_COLOR, LIGHT_MODE_DIMMED_ERROR_COLOR, LIGHT...
26.386243
92
0.560193
cybersecurity-penetration-testing
/** * Copyright (c) Meta Platforms, Inc. and affiliates. * * This source code is licensed under the MIT license found in the * LICENSE file in the root directory of this source tree. * * @flow */ import type {ReactNodeList} from 'shared/ReactTypes'; import {version, renderToStringImpl} from './ReactDOMLegacySe...
28.873016
375
0.750133
owtf
var React = require('react'); var ReactDOM = require('react-dom'); ReactDOM.render( React.createElement('h1', null, 'Hello World!'), document.getElementById('container') );
21.375
50
0.702247
Hands-On-Penetration-Testing-with-Python
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.default = useTheme; exports.ThemeContext = void 0; var _react = require("react"); /** * Copyright (c) Meta Platforms, Inc. and affiliates. * * This source code is licensed under the MIT license found in the * LICENSE file in t...
23.851852
70
0.701493
null
'use strict'; if (process.env.NODE_ENV === 'production') { module.exports = require('./cjs/use-sync-external-store-with-selector.production.min.js'); } else { module.exports = require('./cjs/use-sync-external-store-with-selector.development.js'); }
30.875
92
0.708661
Hands-On-Penetration-Testing-with-Python
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.Component = Component; /** * Copyright (c) Meta Platforms, Inc. and affiliates. * * This source code is licensed under the MIT license found in the * LICENSE file in the root directory of this source tree. * * */ function C...
21.238095
66
0.701717
PenetrationTestingScripts
/* global chrome */ class CouldNotFindReactOnThePageError extends Error { constructor() { super("Could not find React, or it hasn't been loaded yet"); // Maintains proper stack trace for where our error was thrown (only available on V8) if (Error.captureStackTrace) { Error.captureStackTrace(this, ...
27.057692
134
0.613301
Python-Penetration-Testing-for-Developers
/** * Copyright (c) Meta Platforms, Inc. and affiliates. * * This source code is licensed under the MIT license found in the * LICENSE file in the root directory of this source tree. * * @emails react-core * @jest-environment node */ 'use strict'; let React; let ReactNoop; let Scheduler; let ContinuousEventPr...
27.173807
123
0.559977
PenetrationTestingScripts
/** * Copyright (c) Meta Platforms, Inc. and affiliates. * * This source code is licensed under the MIT license found in the * LICENSE file in the root directory of this source tree. * * @flow */ export * from 'react-client/src/ReactFlightClientConfigNode'; export * from 'react-server-dom-turbopack/src/ReactFli...
39.5625
93
0.79321
owtf
import React from 'react'; import ReactDOM from 'react-dom'; ReactDOM.render( React.createElement('h1', null, 'Hello World!'), document.getElementById('container') );
20.625
50
0.726744
cybersecurity-penetration-testing
/** * Copyright (c) Meta Platforms, Inc. and affiliates. * * This source code is licensed under the MIT license found in the * LICENSE file in the root directory of this source tree. * * @emails react-core */ 'use strict'; let React; let ReactDOM; let ReactDOMServer; let ReactTestUtils; describe('ReactDOM', (...
28.694268
119
0.562603
PenetrationTestingScripts
module.exports = require('./dist/standalone');
23
46
0.723404
cybersecurity-penetration-testing
/** * Copyright (c) Meta Platforms, Inc. and affiliates. * * This source code is licensed under the MIT license found in the * LICENSE file in the root directory of this source tree. * * @flow */ export interface Destination { push(chunk: string | null): boolean; destroy(error: Error): mixed; } export opaq...
24.049383
99
0.760848
Penetration_Testing
/** * Copyright (c) Meta Platforms, Inc. and affiliates. * * This source code is licensed under the MIT license found in the * LICENSE file in the root directory of this source tree. * * @flow */ import type { TransitionTracingCallbacks, Fiber, FiberRoot, } from './ReactInternalTypes'; import type {Offscr...
31.99262
79
0.640268
Hands-On-Penetration-Testing-with-Python
/** * Copyright (c) Meta Platforms, Inc. and affiliates. * * This source code is licensed under the MIT license found in the * LICENSE file in the root directory of this source tree. * * @flow */ import {createContext, useContext} from 'react'; const A = createContext(1); const B = createContext(2); export fu...
20.75
76
0.673704