shell bypass 403
GrazzMean Shell
: /home/homesquasz/devprod/AdminLTE-master/node_modules/@nodelib/fs.walk/src/readers/ [ drwx---r-x ]
import Settings, { FilterFunction } from '../settings';
import { Errno } from '../types';
export function isFatalError(settings: Settings, error: Errno): boolean {
if (settings.errorFilter === null) {
return true;
}
return !settings.errorFilter(error);
}
export function isAppliedFilter<T>(filter: FilterFunction<T> | null, value: T): boolean {
return filter === null || filter(value);
}
export function replacePathSegmentSeparator(filepath: string, separator: string): string {
return filepath.split(/[/\\]/).join(separator);
}
export function joinPathSegments(a: string, b: string, separator: string): string {
if (a === '') {
return b;
}
/**
* The correct handling of cases when the first segment is a root (`/`, `C:/`) or UNC path (`//?/C:/`).
*/
if (a.endsWith(separator)) {
return a + b;
}
return a + separator + b;
}