shell bypass 403
GrazzMean-Shell Shell
: /home/allssztx/public_html/jollyprecast/wp-content/plugins/extendify/src/Launch/hooks/ [ drwxr-xr-x ]
import useSWR from 'swr';
export const useFetch = (params, fetcher, options = {}) => {
const { data, error } = useSWR(params, (key) => fetcher(key), {
revalidateIfStale: false,
revalidateOnFocus: false,
revalidateOnReconnect: false,
...options,
});
return {
data,
loading: !data && !error && !error?.message,
error,
};
};