
Research
PyPI Package Disguised as Instagram Growth Tool Harvests User Credentials
A deceptive PyPI package posing as an Instagram growth tool collects user credentials and sends them to third-party bot services.
session-context
Advanced tools
Supply Chain Security
Vulnerability
Quality
Maintenance
License
Unpopular package
QualityThis package is not very popular.
Found 1 instance in 1 package
Exchanging data globally within a session.
https://github.com/SoraKumo001/remix-global-prisma
import {
vitePlugin as remix,
cloudflareDevProxyVitePlugin as remixCloudflareDevProxy,
} from '@remix-run/dev';
import { defineConfig } from 'vite';
import tsconfigPaths from 'vite-tsconfig-paths';
import { getLoadContext } from './load-context';
import { sessionContextPlugin } from 'session-context/vite';
export default defineConfig({
plugins: [
remixCloudflareDevProxy({ getLoadContext }),
remix({
future: {
v3_fetcherPersist: true,
v3_relativeSplatPath: true,
v3_throwAbortReason: true,
},
}),
tsconfigPaths(),
sessionContextPlugin(),
],
});
import { AppLoadContext } from '@remix-run/cloudflare';
import { getSessionContext } from 'session-context';
import { type PlatformProxy } from 'wrangler';
type Cloudflare = Omit<PlatformProxy<Env>, 'dispose'>;
declare module '@remix-run/cloudflare' {
interface AppLoadContext {
cloudflare: Cloudflare;
}
}
type GetLoadContext = (args: {
request: Request;
context: { cloudflare: Cloudflare };
}) => AppLoadContext;
export const getLoadContext: GetLoadContext = ({ context }) => {
const store = getSessionContext();
store.env = context.cloudflare.env; // Save the environment variables
// Support `process.env`
// setProcessEnv(context.cloudflare.env);
return context;
};
import { PrismaClient } from '@prisma/client';
import { PrismaD1 } from '@prisma/adapter-d1';
import { getSessionContext } from 'session-context';
export const getPrisma = () => {
const store = getSessionContext<{ prisma?: PrismaClient; env: Env }>();
if (!store.prisma) {
const adapter = new PrismaD1(store.env.DB);
store.prisma = new PrismaClient({ adapter });
}
return store.prisma;
};
export const prisma = new Proxy<PrismaClient>({} as never, {
get(_target: unknown, props: keyof PrismaClient) {
return getPrisma()[props];
},
});
import { useLoaderData } from '@remix-run/react';
import { prisma } from '~/libs/prisma';
export default function Index() {
const value = useLoaderData<string>();
return <div>{value}</div>;
}
export async function loader(): Promise<string> {
//You can directly use the PrismaClient instance received from the module
const users = await prisma.user.findMany();
return JSON.stringify(users);
}
import { createRequestHandler, ServerBuild } from '@remix-run/cloudflare';
import * as build from '../build/server';
import { getLoadContext } from '../load-context';
import { runSession } from 'session-context';
const handler = createRequestHandler(build as unknown as ServerBuild);
const fetch = async (request: Request, env: Env, ctx: ExecutionContext) => {
return runSession(() => {
const context = getLoadContext({
request,
context: {
cloudflare: {
env,
ctx: {
waitUntil: ctx.waitUntil.bind(ctx) ?? (() => {}),
passThroughOnException: ctx.passThroughOnException.bind(ctx) ?? (() => {}),
},
cf: request.cf as never,
caches: caches as never,
},
},
});
return handler(request, context);
});
};
export default {
fetch,
};
#:schema node_modules/wrangler/config-schema.json
name = "xxxxx"
compatibility_date = "2024-09-25"
compatibility_flags = ["nodejs_compat"]
main = "./functions/server.ts"
assets = { directory = "./build/client" }
minify = true
[observability]
enabled = true
[[d1_databases]]
binding = "xxx"
database_name = "xxxx"
database_id = "xxxxxx"
FAQs
Exchanging data globally within a session.
The npm package session-context receives a total of 134 weekly downloads. As such, session-context popularity was classified as not popular.
We found that session-context demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Research
A deceptive PyPI package posing as an Instagram growth tool collects user credentials and sends them to third-party bot services.
Product
Socket now supports pylock.toml, enabling secure, reproducible Python builds with advanced scanning and full alignment with PEP 751's new standard.
Security News
Research
Socket uncovered two npm packages that register hidden HTTP endpoints to delete all files on command.