비밀번호

우리가 건물을보고, 실시간. 모든 기능, 수정 및 개선은 플랫폼을 통해 배송.

17,933
총 변경
4,614
제품 설명
4,543
수정 사항
32
프로젝트
프로젝트
모든 프로젝트17,933AIService110APIService138BillingService133ConversionService85DaemonService107DocsService189ESigService78EmailService373InitializerService300KBService74KlusterServices546MCPGatewayService43MediaService461RAGService61SecurityService1,523TranslateService45VOIPService173VectorService8kamo-analytics6,157kamo-apps18kamo-asterisk-support19kamo-capcha17kamo-capcha-widget4kamo-internal4,579kamo-login319kamo-marketing585kamo-meet90kamo-nowww18kamo-register206kamo-shared-library1,322kamo-signer-monorepo50kamolos102
필터 유형
모든 유형Build24CI523Chore670Docs226Feature4,614Fix4,543Other6,781Performance136Refactor274Revert23Style48Test70Upgrade1
October 14, 2025
Otherkamo-login

CRITICAL FIX: OTK prematurely 소모된 endpoints 제거

뿌리 원인 발견: - /api/validate and /api/validate-otk in kamo-login은 SecurityService를 호출했습니다. - 로그인 후 OTK IMMEDIATELY를 소모 (사용자가 그것을 사용할 수 있음) - SecurityService 로그는 생성...

snadjafinia·11mo ago
Otherkamo-login

ESLint 오류 수정: checkExistingSession state 사용

수정 : - 기존 *** 세션을 검사하는 동안 로딩 스피너 표시 - 자동 로그인 체크 중 로그인 양식 - 더 나은 UX 제공 (사용자는 '체크 세션...' 메시지) 이 빌드 오류를 수정: 'checkingExistingSession'는 값을 할당하지만 사용하지 않는

snadjafinia·11mo ago
Otherkamo-login

자동 로그인 및 로그 아웃 엔드 포인트에 대한 누락 된 Redis 라이브러리 추가

오류 수정 : - 읽기 / 쓰기 Redis 클라이언트 헬퍼로 app/lib/redis.ts 만들기 - getRedisReadClient() 및 getRedisWriteClient() 제공 - /api/auto-login 및 /api/logout endpoints에 의해 요구되는 - ka...

snadjafinia·11mo ago
Otherkamo-internal

Update logout flow to use direct Redis access

Logout Flow Changes: - /logout (page): DELETE Redis session via /api/logout, forward to login/logout - /api/logout: Direct Redis DELETE (no SecurityService call...

snadjafinia·11mo ago
Otherkamo-login

SSO 자동 로그인 및 전체 로그아웃 흐름 구현

자동 로그인 기능: - 로그인 페이지로드에 대한 기존 *** 쿠키 확인 - Redis와 직접 검증된 세션 - 유효한 경우, 내부 앱에 새로운 OTK 및 자동 간접을 만듭니다. - 재입력 자격 없이 원활한 재입력 제공 새로운 엔드포인트: - /api/auto-login: Validate...

snadjafinia·11mo ago
Otherkamo-internal

FORCE REBUILD: Add extensive logging to /api/validate (Direct Redis)

Critical Change: - This endpoint does NOT call SecurityService - It queries Redis DIRECTLY for OTK validation - Extensive logging added to trace every step New...

snadjafinia·11mo ago
OtherSecurityService

/validate-otk endpoint에서 쿠키 설정 제거

공급 능력: - /validate-otk endpoint 이제는 반환 *** ID 및 TTL - 더 이상 세트 쿠키 없음 (Next.js는 이것을 직접 취급합니다) - KSessionService에 getSessionTtlSeconds() 헬퍼 메소드 추가 지원 : - Next.js는...

snadjafinia·11mo ago
Otherkamo-internal

Make *** cookie client-accessible & validate OTK directly in Next.js

Major Simplifications: - *** cookie is now client-accessible (httpOnly: false) - Both Next.js and Java can read the cookie directly - Cookie expires in 30 minut...

snadjafinia·11mo ago
OtherSecurityService

*** ID 길이 512에서 128 문자로 축소

변경 사항: -*** ID LENGTH: 512 -> 128 (에트로피의 64 바이트) - 모든 문서 및 의견 업데이트 - 전체 128-char ID를 표시하는 업데이트 된 로깅 - OTK 길이는 64자 (변경되지 않음) 남아 있습니다. 보안: 512 비트 entropy (128 헥스...

snadjafinia·11mo ago
Otherkamo-internal

Fix build error and change *** length to 128 chars

Build Fixes: - Escape apostrophe in validate page (') - Add searchParams dependency to useEffect *** Length Change: - Update expected *** length from 512 ...

snadjafinia·11mo ago
Otherkamo-internal

Add comprehensive debugging UI to validate page

- Show component render count and validation attempt count - Display OTK information and length validation - Show retrieved *** ID (512 chars) when successful -...

snadjafinia·11mo ago
OtherSecurityService

*** ID 길이를 512 문자로 강화 된 보안

- *** ID: 512-char hex 문자열 (보안 임의 데이터 256 바이트) - OTK ID: 64-char hex 문자열 (32 바이트 - 변경되지 않음) - configurable 길이를 허용하기 위해 createSecureHexString()을 업데이트했습니다. - 모든 유...

snadjafinia·11mo ago
Otherkamo-internal

Fix OTK validation duplicate calls issue

- Add useRef to track validation attempts - Prevent duplicate API calls (critical for one-time keys) - Change useEffect deps to empty array (run once on mount) ...

snadjafinia·11mo ago
Otherkamo-internal

Update OTK validation to use new *** session model

- Extract ***Id from JSON response body (not Set-Cookie header) - SecurityService now returns { success, message, ***Id } - Set *** cookie with 64-char GUID fro...

snadjafinia·11mo ago
OtherSecurityService

새로운 *** 세션 모델 64char GUID

- 간단한 세션 관리용 KSessionService 추가 - *** ID는 이제 64char hex 문자열입니다 (KToken을 인코딩하지 않음) - Redis 키 형식 : ***<64-char-guid> - Redis 값: 사용자 데이터와 JSON (userID, memberID, 권...

snadjafinia·11mo ago
October 13, 2025
OtherSecurityService

Trigger rebuild 와 최신 kamo-shared-library

snadjafinia·11mo ago
OtherAPIService

Trigger rebuild with latest kamo-shared-library

snadjafinia·11mo ago
Otherkamo-register

배치 추가 Kubernetes 구성

snadjafinia·11mo ago
Otherkamo-analytics

테이블에 대한 카드 모드.

Mike Cao·11mo ago
Otherkamo-login

Fix TypeScript 엄격한 유형 검사

kamo·11mo ago
Otherkamo-login

Unused getCookie 함수를 제거

kamo·11mo ago
Otherkamo-login

AuthorizationService Dependencies 제거, SecurityService로 전환

- 복잡한 AuthorizationService 인증 논리 및 도메인 리디렉션 제거 - SecurityService API 호출을 가진 OAuth2 공급자 탐지를 대체하십시오 - 조직별 시각적 브랜딩을 위한 OAuth2 버튼 유지 (비 기능) - SecurityService 로그인 흐름...

kamo·11mo ago
October 12, 2025
OtherSecurityService

Redis 구성

- SSL 구성 제거 (타입 변환 오류 발생) - 로컬 redis-slave 서비스에 대한 암호 요구 사항 제거 - 호스트 설정 *********** (각 클러스터에 로컬) - 비밀번호가 없는 Redis로 작업할 수 있도록 설정 단순화

kamo·11mo ago
OtherSecurityService

데이터베이스 연결 설정

- 10.8.0.1:3306에 직접 연결하는 데이터베이스 URL 업데이트 - 루트에서 kamo로 사용자의 변경 - root-password에서 DB PASSWORD로 비밀 참조 - 배포에서 mysql-auth 비밀 의존성을 제거

kamo·11mo ago
OtherSecurityService

Fix SecurityService 배포 구성

- 데이터베이스, Redis 및 외부 서비스 구성을 포함한 완전한 application.yml를 가진 ConfigMap 업데이트 - Application.yml 파일로 ConfigMap을 마운트하기 위한 Deployment 업데이트 - actuator endpoints를 사용하여 적절한...

kamo·11mo ago
OtherAPIService

Trigger CI/CD workflow

kamo·11mo ago

배송을 보는 것과 같이?

작업 공간의 모든 업데이트 땅은 자동으로. 일주일 후 무료로 시청하십시오.

무료 영원히 시작가격 비교